Geode-Simplex 8.0.2__cp39-cp39-manylinux_2_28_x86_64.whl → 9.9.1__cp39-cp39-manylinux_2_28_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. geode_simplex/__init__.py +4 -4
  2. geode_simplex/__init__.pyi +18 -0
  3. geode_simplex/{brep.py → brep_simplex.py} +1 -1
  4. geode_simplex/brep_simplex.pyi +9 -0
  5. geode_simplex/lib64/__init__.pyi +5 -0
  6. geode_simplex/lib64/geode_simplex_py_brep.cpython-39-x86_64-linux-gnu.so +0 -0
  7. geode_simplex/lib64/geode_simplex_py_brep.pyi +13 -0
  8. geode_simplex/lib64/geode_simplex_py_metric.cpython-39-x86_64-linux-gnu.so +0 -0
  9. geode_simplex/lib64/geode_simplex_py_metric.pyi +87 -0
  10. geode_simplex/lib64/geode_simplex_py_section.cpython-39-x86_64-linux-gnu.so +0 -0
  11. geode_simplex/lib64/geode_simplex_py_section.pyi +13 -0
  12. geode_simplex/lib64/libGeode-Simplex_brep.so +0 -0
  13. geode_simplex/lib64/libGeode-Simplex_core.so +0 -0
  14. geode_simplex/lib64/libGeode-Simplex_corner.so +0 -0
  15. geode_simplex/lib64/libGeode-Simplex_line2d.so +0 -0
  16. geode_simplex/lib64/libGeode-Simplex_line3d.so +0 -0
  17. geode_simplex/lib64/libGeode-Simplex_line_common.so +0 -0
  18. geode_simplex/lib64/libGeode-Simplex_metric.so +0 -0
  19. geode_simplex/lib64/libGeode-Simplex_section.so +0 -0
  20. geode_simplex/lib64/libGeode-Simplex_solid.so +0 -0
  21. geode_simplex/lib64/libGeode-Simplex_surface2d.so +0 -0
  22. geode_simplex/lib64/libGeode-Simplex_surface3d.so +0 -0
  23. geode_simplex/lib64/libGeode-Simplex_surface_common.so +0 -0
  24. geode_simplex/{metric.py → metric_simplex.py} +1 -1
  25. geode_simplex/metric_simplex.pyi +7 -0
  26. geode_simplex/py.typed +0 -0
  27. geode_simplex/{section.py → section_simplex.py} +1 -1
  28. geode_simplex/section_simplex.pyi +8 -0
  29. {Geode_Simplex-8.0.2.dist-info → geode_simplex-9.9.1.dist-info}/METADATA +8 -8
  30. geode_simplex-9.9.1.dist-info/RECORD +32 -0
  31. {Geode_Simplex-8.0.2.dist-info → geode_simplex-9.9.1.dist-info}/WHEEL +1 -1
  32. Geode_Simplex-8.0.2.dist-info/RECORD +0 -23
  33. {Geode_Simplex-8.0.2.dist-info → geode_simplex-9.9.1.dist-info}/top_level.txt +0 -0
geode_simplex/__init__.py CHANGED
@@ -1,5 +1,5 @@
1
- ## Copyright (c) 2019 - 2024 Geode-solutions
1
+ ## Copyright (c) 2019 - 2025 Geode-solutions
2
2
 
3
- from .metric import *
4
- from .section import *
5
- from .brep import *
3
+ from .metric_simplex import *
4
+ from .section_simplex import *
5
+ from .brep_simplex import *
@@ -0,0 +1,18 @@
1
+ from __future__ import annotations
2
+ import geode_background as geode_background
3
+ import geode_common as geode_common
4
+ import geode_numerics as geode_numerics
5
+ from geode_simplex.lib64.geode_simplex_py_brep import SimplexBRepLibrary
6
+ from geode_simplex.lib64.geode_simplex_py_brep import brep_simplex_remesh
7
+ from geode_simplex.lib64.geode_simplex_py_metric import BRepMetricConstraints
8
+ from geode_simplex.lib64.geode_simplex_py_metric import SectionMetricConstraints
9
+ from geode_simplex.lib64.geode_simplex_py_metric import SimplexMetricLibrary
10
+ from geode_simplex.lib64.geode_simplex_py_section import SimplexSectionLibrary
11
+ from geode_simplex.lib64.geode_simplex_py_section import section_simplex_remesh
12
+ import opengeode as opengeode
13
+ import opengeode_inspector as opengeode_inspector
14
+ from . import brep_simplex
15
+ from . import lib64
16
+ from . import metric_simplex
17
+ from . import section_simplex
18
+ __all__: list[str] = ['BRepMetricConstraints', 'SectionMetricConstraints', 'SimplexBRepLibrary', 'SimplexMetricLibrary', 'SimplexSectionLibrary', 'brep_simplex', 'brep_simplex_remesh', 'geode_background', 'geode_common', 'geode_numerics', 'lib64', 'metric_simplex', 'opengeode', 'opengeode_inspector', 'section_simplex', 'section_simplex_remesh']
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2019 - 2024 Geode-solutions. All rights reserved.
2
+ # Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved.
3
3
  #
4
4
 
5
5
  import opengeode
@@ -0,0 +1,9 @@
1
+ from __future__ import annotations
2
+ import geode_background as geode_background
3
+ import geode_common as geode_common
4
+ import geode_numerics as geode_numerics
5
+ from geode_simplex.lib64.geode_simplex_py_brep import SimplexBRepLibrary
6
+ from geode_simplex.lib64.geode_simplex_py_brep import brep_simplex_remesh
7
+ import opengeode as opengeode
8
+ import opengeode_inspector as opengeode_inspector
9
+ __all__: list[str] = ['SimplexBRepLibrary', 'brep_simplex_remesh', 'geode_background', 'geode_common', 'geode_numerics', 'opengeode', 'opengeode_inspector']
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from . import geode_simplex_py_brep
3
+ from . import geode_simplex_py_metric
4
+ from . import geode_simplex_py_section
5
+ __all__: list[str] = ['geode_simplex_py_brep', 'geode_simplex_py_metric', 'geode_simplex_py_section']
@@ -0,0 +1,13 @@
1
+ """
2
+ Geode-Simplex Python binding for brep
3
+ """
4
+ from __future__ import annotations
5
+ import geode_common.lib64.geode_common_py_metric
6
+ import opengeode.lib64.opengeode_py_model
7
+ __all__: list[str] = ['SimplexBRepLibrary', 'brep_simplex_remesh']
8
+ class SimplexBRepLibrary:
9
+ @staticmethod
10
+ def initialize() -> None:
11
+ ...
12
+ def brep_simplex_remesh(arg0: opengeode.lib64.opengeode_py_model.BRep, arg1: geode_common.lib64.geode_common_py_metric.Metric3D) -> tuple[opengeode.lib64.opengeode_py_model.BRep, opengeode.lib64.opengeode_py_model.ModelCopyMapping]:
13
+ ...
@@ -0,0 +1,87 @@
1
+ """
2
+ Geode-Simplex Python binding for metric
3
+ """
4
+ from __future__ import annotations
5
+ import geode_common.lib64.geode_common_py_metric
6
+ import opengeode.lib64.opengeode_py_mesh
7
+ import opengeode.lib64.opengeode_py_model
8
+ import typing
9
+ __all__: list[str] = ['BRepMetricConstraints', 'SectionMetricConstraints', 'SimplexMetricLibrary']
10
+ class BRepMetricConstraints:
11
+ def __init__(self, arg0: opengeode.lib64.opengeode_py_model.BRep) -> None:
12
+ ...
13
+ def block_metric(self, arg0: opengeode.lib64.opengeode_py_model.Block3D) -> float | None:
14
+ ...
15
+ def build_metric(self) -> geode_common.lib64.geode_common_py_metric.Metric3D:
16
+ ...
17
+ def corner_metric(self, arg0: opengeode.lib64.opengeode_py_model.Corner3D) -> float | None:
18
+ ...
19
+ def default_metric(self) -> float:
20
+ ...
21
+ def export_constraints(self, arg0: str) -> None:
22
+ ...
23
+ def gradation(self) -> float:
24
+ ...
25
+ def import_constraints(self, arg0: str) -> None:
26
+ ...
27
+ def line_metric(self, arg0: opengeode.lib64.opengeode_py_model.Line3D) -> float | None:
28
+ ...
29
+ def set_block_metric(self, arg0: opengeode.lib64.opengeode_py_model.Block3D, arg1: float) -> None:
30
+ ...
31
+ def set_corner_metric(self, arg0: opengeode.lib64.opengeode_py_model.Corner3D, arg1: float) -> None:
32
+ ...
33
+ def set_default_metric(self, arg0: float) -> None:
34
+ ...
35
+ def set_edged_curve_metric(self, arg0: opengeode.lib64.opengeode_py_mesh.EdgedCurve3D, arg1: float) -> None:
36
+ ...
37
+ def set_gradation(self, arg0: float) -> None:
38
+ ...
39
+ def set_line_metric(self, arg0: opengeode.lib64.opengeode_py_model.Line3D, arg1: float) -> None:
40
+ ...
41
+ def set_point_set_metric(self, arg0: opengeode.lib64.opengeode_py_mesh.PointSet3D, arg1: float) -> None:
42
+ ...
43
+ def set_surface_metric(self, arg0: opengeode.lib64.opengeode_py_model.Surface3D, arg1: float) -> None:
44
+ ...
45
+ def set_triangulated_surface_metric(self, arg0: opengeode.lib64.opengeode_py_mesh.TriangulatedSurface3D, arg1: float) -> None:
46
+ ...
47
+ def surface_metric(self, arg0: opengeode.lib64.opengeode_py_model.Surface3D) -> float | None:
48
+ ...
49
+ class SectionMetricConstraints:
50
+ def __init__(self, arg0: opengeode.lib64.opengeode_py_model.Section) -> None:
51
+ ...
52
+ def build_metric(self) -> geode_common.lib64.geode_common_py_metric.Metric2D:
53
+ ...
54
+ def corner_metric(self, arg0: opengeode.lib64.opengeode_py_model.Corner2D) -> float | None:
55
+ ...
56
+ def default_metric(self) -> float:
57
+ ...
58
+ def export_constraints(self, arg0: str) -> None:
59
+ ...
60
+ def gradation(self) -> float:
61
+ ...
62
+ def import_constraints(self, arg0: str) -> None:
63
+ ...
64
+ def line_metric(self, arg0: opengeode.lib64.opengeode_py_model.Line2D) -> float | None:
65
+ ...
66
+ def set_corner_metric(self, arg0: opengeode.lib64.opengeode_py_model.Corner2D, arg1: float) -> None:
67
+ ...
68
+ def set_default_metric(self, arg0: float) -> None:
69
+ ...
70
+ def set_edged_curve_metric(self, arg0: opengeode.lib64.opengeode_py_mesh.EdgedCurve2D, arg1: float) -> None:
71
+ ...
72
+ def set_gradation(self, arg0: float) -> None:
73
+ ...
74
+ def set_line_metric(self, arg0: opengeode.lib64.opengeode_py_model.Line2D, arg1: float) -> None:
75
+ ...
76
+ def set_point_set_metric(self, arg0: opengeode.lib64.opengeode_py_mesh.PointSet2D, arg1: float) -> None:
77
+ ...
78
+ def set_surface_metric(self, arg0: opengeode.lib64.opengeode_py_model.Surface2D, arg1: float) -> None:
79
+ ...
80
+ def set_triangulated_surface_metric(self, arg0: opengeode.lib64.opengeode_py_mesh.TriangulatedSurface2D, arg1: float) -> None:
81
+ ...
82
+ def surface_metric(self, arg0: opengeode.lib64.opengeode_py_model.Surface2D) -> float | None:
83
+ ...
84
+ class SimplexMetricLibrary:
85
+ @staticmethod
86
+ def initialize() -> None:
87
+ ...
@@ -0,0 +1,13 @@
1
+ """
2
+ Geode-Simplex Python binding for section
3
+ """
4
+ from __future__ import annotations
5
+ import geode_common.lib64.geode_common_py_metric
6
+ import opengeode.lib64.opengeode_py_model
7
+ __all__: list[str] = ['SimplexSectionLibrary', 'section_simplex_remesh']
8
+ class SimplexSectionLibrary:
9
+ @staticmethod
10
+ def initialize() -> None:
11
+ ...
12
+ def section_simplex_remesh(arg0: opengeode.lib64.opengeode_py_model.Section, arg1: geode_common.lib64.geode_common_py_metric.Metric2D) -> tuple[opengeode.lib64.opengeode_py_model.Section, opengeode.lib64.opengeode_py_model.ModelCopyMapping]:
13
+ ...
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2019 - 2024 Geode-solutions. All rights reserved.
2
+ # Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved.
3
3
  #
4
4
 
5
5
  import opengeode
@@ -0,0 +1,7 @@
1
+ from __future__ import annotations
2
+ import geode_common as geode_common
3
+ from geode_simplex.lib64.geode_simplex_py_metric import BRepMetricConstraints
4
+ from geode_simplex.lib64.geode_simplex_py_metric import SectionMetricConstraints
5
+ from geode_simplex.lib64.geode_simplex_py_metric import SimplexMetricLibrary
6
+ import opengeode as opengeode
7
+ __all__: list[str] = ['BRepMetricConstraints', 'SectionMetricConstraints', 'SimplexMetricLibrary', 'geode_common', 'opengeode']
geode_simplex/py.typed ADDED
File without changes
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright (c) 2019 - 2024 Geode-solutions. All rights reserved.
2
+ # Copyright (c) 2019 - 2025 Geode-solutions. All rights reserved.
3
3
  #
4
4
 
5
5
  import opengeode
@@ -0,0 +1,8 @@
1
+ from __future__ import annotations
2
+ import geode_background as geode_background
3
+ import geode_common as geode_common
4
+ import geode_numerics as geode_numerics
5
+ from geode_simplex.lib64.geode_simplex_py_section import SimplexSectionLibrary
6
+ from geode_simplex.lib64.geode_simplex_py_section import section_simplex_remesh
7
+ import opengeode as opengeode
8
+ __all__: list[str] = ['SimplexSectionLibrary', 'geode_background', 'geode_common', 'geode_numerics', 'opengeode', 'section_simplex_remesh']
@@ -1,16 +1,16 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: Geode-Simplex
3
- Version: 8.0.2
3
+ Version: 9.9.1
4
4
  Summary: Simplex remeshing Geode-solutions OpenGeode module
5
5
  Author-email: Geode-solutions <contact@geode-solutions.com>
6
6
  License: Proprietary
7
7
  Requires-Python: <3.13,>=3.9
8
8
  Description-Content-Type: text/markdown
9
- Requires-Dist: geode-background ==8.*,>=8.0.1
10
- Requires-Dist: geode-common ==32.*,>=32.0.3
11
- Requires-Dist: geode-numerics ==5.*,>=5.0.1
12
- Requires-Dist: opengeode-core ==15.*,>=15.0.1
13
- Requires-Dist: opengeode-inspector ==6.*,>=6.0.0
9
+ Requires-Dist: geode-background==9.*,>=9.9.0
10
+ Requires-Dist: geode-common==33.*,>=33.15.0
11
+ Requires-Dist: geode-numerics==6.*,>=6.4.9
12
+ Requires-Dist: opengeode-core==15.*,>=15.30.13
13
+ Requires-Dist: opengeode-inspector==6.*,>=6.8.13
14
14
 
15
15
  <h1 align="center">Geode-Simplex<sup><i>by Geode-solutions</i></sup></h1>
16
16
  <h3 align="center">Simplex remeshing</h3>
@@ -29,7 +29,7 @@ Requires-Dist: opengeode-inspector ==6.*,>=6.0.0
29
29
  </p>
30
30
 
31
31
  <p align="center">
32
- <img src="https://img.shields.io/badge/C%2B%2B-11-blue.svg" alt="Language">
32
+ <img src="https://img.shields.io/badge/C%2B%2B-17-blue.svg" alt="Language">
33
33
  <img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="Semantic-release">
34
34
  <a href="https://opengeode-slack-invite.herokuapp.com">
35
35
  <img src="https://opengeode-slack-invite.herokuapp.com/badge.svg" alt="Slack invite">
@@ -0,0 +1,32 @@
1
+ geode_simplex/__init__.py,sha256=j4co7CR9hIJW-Iv9LdmUZTflUeT4Wrz1AxZvaXs0LSw,135
2
+ geode_simplex/__init__.pyi,sha256=hv6sk9snnFPkqSEXcxr5QiNZ-hL2A7rngHpXnsRbb8s,1230
3
+ geode_simplex/brep_simplex.py,sha256=a5KvBC-TgzijdnPLrSq9ZgiGYJZhOLz3PP9pGfI0YHI,257
4
+ geode_simplex/brep_simplex.pyi,sha256=Z2UETMUoaZZAFnTk4yxKpZXywPtFkGh9ivDfF-GMgLg,539
5
+ geode_simplex/metric_simplex.py,sha256=3lbDinMu3heHuiJgZb97PT1ET3K6RyiId1kp42xHY-g,188
6
+ geode_simplex/metric_simplex.pyi,sha256=X4ZOgzCPSYyCLwjZNX4NXJrYDz1KGTPXLPIr_Q1WJBU,465
7
+ geode_simplex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ geode_simplex/section_simplex.py,sha256=Q4_J2knF78lwnS8_jx-0H4rVF1kYceKfze7GezMhXWo,237
9
+ geode_simplex/section_simplex.pyi,sha256=EEEnRedtzmtmCWL14qAgn3wNCU7Ph9xVJ7ijvQVCzpM,484
10
+ geode_simplex/lib64/__init__.pyi,sha256=I04mM6D2OP09rxOc7lN26-WSrTWEXxvZIuo7lBH9SkY,250
11
+ geode_simplex/lib64/geode_simplex_py_brep.cpython-39-x86_64-linux-gnu.so,sha256=q5_as5o1YvgYtWWK3NTkyhdfkCW3ie-T7E8wlbJpuHc,155256
12
+ geode_simplex/lib64/geode_simplex_py_brep.pyi,sha256=7LNRPbfbWRyr1zTehvt2MDPiYb1i5ej4oNOlbEe68Oc,566
13
+ geode_simplex/lib64/geode_simplex_py_metric.cpython-39-x86_64-linux-gnu.so,sha256=2MSehLBzHhhvLuM3leQdTHH3yhIM0_MNxzSS57fbz5w,212632
14
+ geode_simplex/lib64/geode_simplex_py_metric.pyi,sha256=llTz2ROCSnAY_51vSeviT-S_Tmq5h1GsmyiZJCpBXIE,3903
15
+ geode_simplex/lib64/geode_simplex_py_section.cpython-39-x86_64-linux-gnu.so,sha256=0c99tp537KXQd0hoiAAL1rpBEu-B3afa9e6PBFuoF2Q,155256
16
+ geode_simplex/lib64/geode_simplex_py_section.pyi,sha256=isQYtsiAJNjhcgqO16KchxUyNiyjwfjzmIQobWBGFik,587
17
+ geode_simplex/lib64/libGeode-Simplex_brep.so,sha256=9zBfp_fgLZueP6L-CzzxTy4CfZY2Vb3irbxZB8ME5C8,5812584
18
+ geode_simplex/lib64/libGeode-Simplex_core.so,sha256=h3pm4t6zTcFetJ6M9gx94BrW4ycHgKPnBKDvud5Ommg,5631272
19
+ geode_simplex/lib64/libGeode-Simplex_corner.so,sha256=jQof3liPyrPY2_7DkI9i0qUaWo4IOJGbdo_k2b3NwMc,18840
20
+ geode_simplex/lib64/libGeode-Simplex_line2d.so,sha256=G2JSQCg2yI3Is_serbQeamUCLhNobJv-W29ObckPgEY,76712
21
+ geode_simplex/lib64/libGeode-Simplex_line3d.so,sha256=mcoo1ya0C2_VmCATf4bYiF5zCZ0t0XxkPJsYN_oEjMU,76720
22
+ geode_simplex/lib64/libGeode-Simplex_line_common.so,sha256=UJCneuPchOLpYHStxDC2llzJFGuaSt6hA4nabMQgeGQ,262344
23
+ geode_simplex/lib64/libGeode-Simplex_metric.so,sha256=xebyCkdD7B9lcGh_TD-K1GcVTGffHqR-AejIwZ-qV2g,221616
24
+ geode_simplex/lib64/libGeode-Simplex_section.so,sha256=UFAlXMTD1OFuLLoKCDAOPKlFneKjPfJpqjST6QUp87M,5502760
25
+ geode_simplex/lib64/libGeode-Simplex_solid.so,sha256=dqfM31eb_6qCjavbann9BnGXBImcVTrGPjSX30z39T0,957632
26
+ geode_simplex/lib64/libGeode-Simplex_surface2d.so,sha256=rd2s3dEABDBm88QrxG2YrAwqlO6WNMFGvuL4v4Cx3hk,142952
27
+ geode_simplex/lib64/libGeode-Simplex_surface3d.so,sha256=nF3EjxAVlvjS3HQ9G_y95r1_lsedU8Ry6mNluRuouCA,345088
28
+ geode_simplex/lib64/libGeode-Simplex_surface_common.so,sha256=Tp6uEs2iWAJcVuREPiGLJ7qzaHJedNNuccLAB0nktDM,446816
29
+ geode_simplex-9.9.1.dist-info/METADATA,sha256=ngGubPi9Jnow4pFbtL33hhNGNeyIymKBLSFgyM8nWPU,1876
30
+ geode_simplex-9.9.1.dist-info/WHEEL,sha256=xBX4onHB9hedwVJmaMzGMZGvQ3CPO7V_K8S9h_B6PVk,102
31
+ geode_simplex-9.9.1.dist-info/top_level.txt,sha256=qVrD68Hw2vhKcJrG51EYDm9MTGp9SfmZRdSrRKjmdFI,14
32
+ geode_simplex-9.9.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (71.0.3)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp39-cp39-linux_x86_64
5
5
 
@@ -1,23 +0,0 @@
1
- geode_simplex/__init__.py,sha256=gcM5T_UgBtZLGFHrlAjnA6y1YKHPZzEGuC7xS-ron1I,111
2
- geode_simplex/brep.py,sha256=qPcfXw61t20f6gnPuATXZTva2IGTgccejWjcBrpiwHE,257
3
- geode_simplex/metric.py,sha256=to4N_8_IlhBJS9h8lovXupdJCDzjxQ9ablCgrSE2s4Y,188
4
- geode_simplex/section.py,sha256=V0Rs1ljcSJNZIQJ0t53KptBkMFODJRs3YJfhmsV2kcs,237
5
- geode_simplex/lib64/geode_simplex_py_brep.cpython-39-x86_64-linux-gnu.so,sha256=ZAaMLn64GbnYolQ5OaFgCN2S2GO8ayt3uaGEFeK4Yxg,155264
6
- geode_simplex/lib64/geode_simplex_py_metric.cpython-39-x86_64-linux-gnu.so,sha256=oDFoFvxurqYzg3LlAa9DX2AZllk-wgA8wnH1ZjQxm68,212640
7
- geode_simplex/lib64/geode_simplex_py_section.cpython-39-x86_64-linux-gnu.so,sha256=QG2--wS1kpXm77NpFpRMWT1KmB9BFfRXYnSuJgt7Fjw,151168
8
- geode_simplex/lib64/libGeode-Simplex_brep.so,sha256=v_nPSMygZyX63Y8UgnR7khQHqAzh71U8ihrVeLZoACU,5680808
9
- geode_simplex/lib64/libGeode-Simplex_core.so,sha256=4hxJcJXuJvnA3D1Odpn-QbnshbAs9wHCN7TP7QReIhk,159368
10
- geode_simplex/lib64/libGeode-Simplex_corner.so,sha256=OaedNZJSX99nuUfgVEI-vq-om_WGWWhUfoUWiaroKbc,52024
11
- geode_simplex/lib64/libGeode-Simplex_line2d.so,sha256=ZE7ljl1FRjEv3yj_4oyNxOLdgfFlGinM7NufHy9nzWk,72472
12
- geode_simplex/lib64/libGeode-Simplex_line3d.so,sha256=AHvh-Gw2C3p2L6oP3LC9qpW9oOFOyEXxkZMeKp7LgRI,72480
13
- geode_simplex/lib64/libGeode-Simplex_line_common.so,sha256=Pwnlo6jjVYCbGizfpxNG0Bk1CodzI5QwpYER-xke8pM,249720
14
- geode_simplex/lib64/libGeode-Simplex_metric.so,sha256=L2oOjp7RL50MLgdirCpWrLlcINNde0WyiQh1YWow__s,204616
15
- geode_simplex/lib64/libGeode-Simplex_section.so,sha256=9VkIaVVQbCuSawtQjByOGsslsX1DBonsTyjS3hZyYZ0,5498664
16
- geode_simplex/lib64/libGeode-Simplex_solid.so,sha256=pfU1DOQ1gkAQEA-qdO6BIAeB_LhKneIIp76huqj2tyQ,1043264
17
- geode_simplex/lib64/libGeode-Simplex_surface2d.so,sha256=BMlioP4qPVPVdSG8MHSe71MzWKSa0iZbB62__j9pgj8,130456
18
- geode_simplex/lib64/libGeode-Simplex_surface3d.so,sha256=4wjlm7P1QUyWd31604-su5oZ7Y0NGj0Y6T3cwnkoWx0,250016
19
- geode_simplex/lib64/libGeode-Simplex_surface_common.so,sha256=53jwOOWl3sCHonYA8bQgmscxEExPkrXBazHgXPfey28,413824
20
- Geode_Simplex-8.0.2.dist-info/METADATA,sha256=4qCMuHpvjMnoz1DPdggArPi-lMXagXa-jWeUuREV-KU,1877
21
- Geode_Simplex-8.0.2.dist-info/WHEEL,sha256=J_dW8QsOnIQECNX2_OBAf5NMeI7Bc0LyRiehPoKyJ3o,102
22
- Geode_Simplex-8.0.2.dist-info/top_level.txt,sha256=qVrD68Hw2vhKcJrG51EYDm9MTGp9SfmZRdSrRKjmdFI,14
23
- Geode_Simplex-8.0.2.dist-info/RECORD,,