Geode-Simplex 9.5.5__cp310-cp310-win_amd64.whl → 9.8.11rc2__cp310-cp310-win_amd64.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.
- geode_simplex/__init__.pyi +20 -0
- geode_simplex/bin/Geode-Simplex_brep.dll +0 -0
- geode_simplex/bin/Geode-Simplex_core.dll +0 -0
- geode_simplex/bin/Geode-Simplex_corner.dll +0 -0
- geode_simplex/bin/Geode-Simplex_line2d.dll +0 -0
- geode_simplex/bin/Geode-Simplex_line3d.dll +0 -0
- geode_simplex/bin/Geode-Simplex_line_common.dll +0 -0
- geode_simplex/bin/Geode-Simplex_metric.dll +0 -0
- geode_simplex/bin/Geode-Simplex_section.dll +0 -0
- geode_simplex/bin/Geode-Simplex_solid.dll +0 -0
- geode_simplex/bin/Geode-Simplex_surface2d.dll +0 -0
- geode_simplex/bin/Geode-Simplex_surface3d.dll +0 -0
- geode_simplex/bin/Geode-Simplex_surface_common.dll +0 -0
- geode_simplex/bin/__init__.pyi +5 -0
- geode_simplex/bin/geode_simplex_py_brep.cp310-win_amd64.pyd +0 -0
- geode_simplex/bin/geode_simplex_py_brep.pyi +13 -0
- geode_simplex/bin/geode_simplex_py_metric.cp310-win_amd64.pyd +0 -0
- geode_simplex/bin/geode_simplex_py_metric.pyi +87 -0
- geode_simplex/bin/geode_simplex_py_section.cp310-win_amd64.pyd +0 -0
- geode_simplex/bin/geode_simplex_py_section.pyi +13 -0
- geode_simplex/brep_simplex.pyi +9 -0
- geode_simplex/metric_simplex.pyi +7 -0
- geode_simplex/py.typed +0 -0
- geode_simplex/section_simplex.pyi +8 -0
- {geode_simplex-9.5.5.dist-info → geode_simplex-9.8.11rc2.dist-info}/METADATA +6 -6
- geode_simplex-9.8.11rc2.dist-info/RECORD +40 -0
- geode_simplex-9.5.5.dist-info/RECORD +0 -31
- {geode_simplex-9.5.5.dist-info → geode_simplex-9.8.11rc2.dist-info}/WHEEL +0 -0
- {geode_simplex-9.5.5.dist-info → geode_simplex-9.8.11rc2.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,20 @@
|
|
|
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.bin.geode_simplex_py_brep import SimplexBRepLibrary
|
|
6
|
+
from geode_simplex.bin.geode_simplex_py_brep import brep_simplex_remesh
|
|
7
|
+
from geode_simplex.bin.geode_simplex_py_metric import BRepMetricConstraints
|
|
8
|
+
from geode_simplex.bin.geode_simplex_py_metric import SectionMetricConstraints
|
|
9
|
+
from geode_simplex.bin.geode_simplex_py_metric import SimplexMetricLibrary
|
|
10
|
+
from geode_simplex.bin.geode_simplex_py_section import SimplexSectionLibrary
|
|
11
|
+
from geode_simplex.bin.geode_simplex_py_section import section_simplex_remesh
|
|
12
|
+
import opengeode as opengeode
|
|
13
|
+
import opengeode_inspector as opengeode_inspector
|
|
14
|
+
import os as os
|
|
15
|
+
import pathlib as pathlib
|
|
16
|
+
from . import bin
|
|
17
|
+
from . import brep_simplex
|
|
18
|
+
from . import metric_simplex
|
|
19
|
+
from . import section_simplex
|
|
20
|
+
__all__: list[str] = ['BRepMetricConstraints', 'SectionMetricConstraints', 'SimplexBRepLibrary', 'SimplexMetricLibrary', 'SimplexSectionLibrary', 'bin', 'brep_simplex', 'brep_simplex_remesh', 'geode_background', 'geode_common', 'geode_numerics', 'metric_simplex', 'opengeode', 'opengeode_inspector', 'os', 'pathlib', 'section_simplex', 'section_simplex_remesh']
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Geode-Simplex Python binding for brep
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
import geode_common.bin.geode_common_py_metric
|
|
6
|
+
import opengeode.bin.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.bin.opengeode_py_model.BRep, arg1: geode_common.bin.geode_common_py_metric.Metric3D) -> tuple[opengeode.bin.opengeode_py_model.BRep, opengeode.bin.opengeode_py_model.ModelCopyMapping]:
|
|
13
|
+
...
|
|
Binary file
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Geode-Simplex Python binding for metric
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
import geode_common.bin.geode_common_py_metric
|
|
6
|
+
import opengeode.bin.opengeode_py_mesh
|
|
7
|
+
import opengeode.bin.opengeode_py_model
|
|
8
|
+
import typing
|
|
9
|
+
__all__: list[str] = ['BRepMetricConstraints', 'SectionMetricConstraints', 'SimplexMetricLibrary']
|
|
10
|
+
class BRepMetricConstraints:
|
|
11
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_model.BRep) -> None:
|
|
12
|
+
...
|
|
13
|
+
def block_metric(self, arg0: opengeode.bin.opengeode_py_model.Block3D) -> float | None:
|
|
14
|
+
...
|
|
15
|
+
def build_metric(self) -> geode_common.bin.geode_common_py_metric.Metric3D:
|
|
16
|
+
...
|
|
17
|
+
def corner_metric(self, arg0: opengeode.bin.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.bin.opengeode_py_model.Line3D) -> float | None:
|
|
28
|
+
...
|
|
29
|
+
def set_block_metric(self, arg0: opengeode.bin.opengeode_py_model.Block3D, arg1: float) -> None:
|
|
30
|
+
...
|
|
31
|
+
def set_corner_metric(self, arg0: opengeode.bin.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.bin.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.bin.opengeode_py_model.Line3D, arg1: float) -> None:
|
|
40
|
+
...
|
|
41
|
+
def set_point_set_metric(self, arg0: opengeode.bin.opengeode_py_mesh.PointSet3D, arg1: float) -> None:
|
|
42
|
+
...
|
|
43
|
+
def set_surface_metric(self, arg0: opengeode.bin.opengeode_py_model.Surface3D, arg1: float) -> None:
|
|
44
|
+
...
|
|
45
|
+
def set_triangulated_surface_metric(self, arg0: opengeode.bin.opengeode_py_mesh.TriangulatedSurface3D, arg1: float) -> None:
|
|
46
|
+
...
|
|
47
|
+
def surface_metric(self, arg0: opengeode.bin.opengeode_py_model.Surface3D) -> float | None:
|
|
48
|
+
...
|
|
49
|
+
class SectionMetricConstraints:
|
|
50
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_model.Section) -> None:
|
|
51
|
+
...
|
|
52
|
+
def build_metric(self) -> geode_common.bin.geode_common_py_metric.Metric2D:
|
|
53
|
+
...
|
|
54
|
+
def corner_metric(self, arg0: opengeode.bin.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.bin.opengeode_py_model.Line2D) -> float | None:
|
|
65
|
+
...
|
|
66
|
+
def set_corner_metric(self, arg0: opengeode.bin.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.bin.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.bin.opengeode_py_model.Line2D, arg1: float) -> None:
|
|
75
|
+
...
|
|
76
|
+
def set_point_set_metric(self, arg0: opengeode.bin.opengeode_py_mesh.PointSet2D, arg1: float) -> None:
|
|
77
|
+
...
|
|
78
|
+
def set_surface_metric(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: float) -> None:
|
|
79
|
+
...
|
|
80
|
+
def set_triangulated_surface_metric(self, arg0: opengeode.bin.opengeode_py_mesh.TriangulatedSurface2D, arg1: float) -> None:
|
|
81
|
+
...
|
|
82
|
+
def surface_metric(self, arg0: opengeode.bin.opengeode_py_model.Surface2D) -> float | None:
|
|
83
|
+
...
|
|
84
|
+
class SimplexMetricLibrary:
|
|
85
|
+
@staticmethod
|
|
86
|
+
def initialize() -> None:
|
|
87
|
+
...
|
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Geode-Simplex Python binding for section
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
import geode_common.bin.geode_common_py_metric
|
|
6
|
+
import opengeode.bin.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.bin.opengeode_py_model.Section, arg1: geode_common.bin.geode_common_py_metric.Metric2D) -> tuple[opengeode.bin.opengeode_py_model.Section, opengeode.bin.opengeode_py_model.ModelCopyMapping]:
|
|
13
|
+
...
|
|
@@ -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.bin.geode_simplex_py_brep import SimplexBRepLibrary
|
|
6
|
+
from geode_simplex.bin.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,7 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
import geode_common as geode_common
|
|
3
|
+
from geode_simplex.bin.geode_simplex_py_metric import BRepMetricConstraints
|
|
4
|
+
from geode_simplex.bin.geode_simplex_py_metric import SectionMetricConstraints
|
|
5
|
+
from geode_simplex.bin.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
|
|
@@ -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.bin.geode_simplex_py_section import SimplexSectionLibrary
|
|
6
|
+
from geode_simplex.bin.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
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Geode-Simplex
|
|
3
|
-
Version: 9.
|
|
3
|
+
Version: 9.8.11rc2
|
|
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==9.*,>=9.
|
|
10
|
-
Requires-Dist: geode-common==33.*,>=33.
|
|
11
|
-
Requires-Dist: geode-numerics==6.*,>=6.
|
|
12
|
-
Requires-Dist: opengeode-core==15.*,>=15.
|
|
13
|
-
Requires-Dist: opengeode-inspector==6.*,>=6.
|
|
9
|
+
Requires-Dist: geode-background==9.*,>=9.6.13
|
|
10
|
+
Requires-Dist: geode-common==33.*,>=33.12.2
|
|
11
|
+
Requires-Dist: geode-numerics==6.*,>=6.4.5
|
|
12
|
+
Requires-Dist: opengeode-core==15.*,>=15.30.1
|
|
13
|
+
Requires-Dist: opengeode-inspector==6.*,>=6.8.5
|
|
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>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
geode_simplex/__init__.py,sha256=NPct2BOWl1fv1Mv9w9SVyl7aF2z7MUwD65XQkF1nxGI,241
|
|
2
|
+
geode_simplex/__init__.pyi,sha256=YDyPg-yIgwmQip7FfecMUSlEhY0DANGl8IidqXp32dk,1291
|
|
3
|
+
geode_simplex/brep_simplex.py,sha256=zzcn7P2AFHe5XXeF1fcHApon2myLdsOmL8a-Ztt00Sw,267
|
|
4
|
+
geode_simplex/brep_simplex.pyi,sha256=_hJHSuKgIY1w5bo-NMznlhvNON5Wha6tzTN9-tNpeyU,544
|
|
5
|
+
geode_simplex/metric_simplex.py,sha256=uiVhcTX7_atutwGZaBBeCJkqqDaTxppgcTu9pFivWMY,195
|
|
6
|
+
geode_simplex/metric_simplex.pyi,sha256=StHMchndE0_Zm4IwGbO1TbXHTRANPnRUZe9bFLkDWG4,466
|
|
7
|
+
geode_simplex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
geode_simplex/section_simplex.py,sha256=AJwDTmmTMqskddfzvXav_Dn2QF8EJuZaccETwOar8jE,247
|
|
9
|
+
geode_simplex/section_simplex.pyi,sha256=PL5n2hPRKsTnA29Ks20MyO7KoKk2gu5B5_AzG1S9gNk,488
|
|
10
|
+
geode_simplex/bin/Geode-Simplex_brep.dll,sha256=fl7PVgst9lOrCiwMkA3HcAzQgRSgPo6jcqpIAPe1MkE,4626944
|
|
11
|
+
geode_simplex/bin/Geode-Simplex_core.dll,sha256=y9PeDhZCQvpImwP-n1Ia8CBtD8-_VL7Yp_8NJ-aVEkA,143360
|
|
12
|
+
geode_simplex/bin/Geode-Simplex_corner.dll,sha256=7Yfu8KVjxwtHE1Lti0xhnGYFg_j3QlOz_uo_gaLPHsA,19968
|
|
13
|
+
geode_simplex/bin/Geode-Simplex_line2d.dll,sha256=-oo8SKLSmkt70vOAblg5MPkH1Mp3tYRByzx-TqpDabk,60416
|
|
14
|
+
geode_simplex/bin/Geode-Simplex_line3d.dll,sha256=uglU_AHnb9g64mIyQqIgi4qiXEgMHAj-gVp77EfHx5A,62976
|
|
15
|
+
geode_simplex/bin/Geode-Simplex_line_common.dll,sha256=HmXZeJFpg7QmQ3bLALt8PzsSlOY0y4LNmDSINMibm4E,222208
|
|
16
|
+
geode_simplex/bin/Geode-Simplex_metric.dll,sha256=bzX-O3ALPxmZ_JZVuGfLugkFOWIbwQ6kz-VDK1vCaJw,204288
|
|
17
|
+
geode_simplex/bin/Geode-Simplex_section.dll,sha256=u7XbsHfwcTmGp0YBCo4nZrwVJueyrmjv5MbGX2vZ3VU,4365824
|
|
18
|
+
geode_simplex/bin/Geode-Simplex_solid.dll,sha256=7cbbYIGxesBgvvAuaJZyDHetLDBGxHf_zIwxeFkQ2JU,704512
|
|
19
|
+
geode_simplex/bin/Geode-Simplex_surface2d.dll,sha256=-pIZAfDm5wAwHJ2Jf4x9q6bS77ni5aqzImnBvcBWNhI,117248
|
|
20
|
+
geode_simplex/bin/Geode-Simplex_surface3d.dll,sha256=-i6O2oI3Dj079a2z73vQ8nIUWEgJ8r8JAFmOdPVNfWI,292864
|
|
21
|
+
geode_simplex/bin/Geode-Simplex_surface_common.dll,sha256=IcWuGCSBolKvqLmzwGb9Mf2_KTaJGr5RJzpeTqoymD4,298496
|
|
22
|
+
geode_simplex/bin/__init__.pyi,sha256=JOaNKSyNhYYzknFrX37_EVd8pLuu94V5hhIslqaipLw,255
|
|
23
|
+
geode_simplex/bin/concrt140.dll,sha256=JAU1XwpYBnslj43zPDJ-Oj1xbqrFo6Wuu3V4Qthb03Y,324208
|
|
24
|
+
geode_simplex/bin/geode_simplex_py_brep.cp310-win_amd64.pyd,sha256=8Mnjs6wGiJGankAUQYJ6MyFSNl9xn12xqGByQuXEnAA,135168
|
|
25
|
+
geode_simplex/bin/geode_simplex_py_brep.pyi,sha256=flbciS-UPj3XintS1w8-iohWXMvVYxFYP6FaYO_Bvas,567
|
|
26
|
+
geode_simplex/bin/geode_simplex_py_metric.cp310-win_amd64.pyd,sha256=_Wkkl5gUFucraZqVeGS9jrXT42-w2FV5E-44z0GNRMM,165376
|
|
27
|
+
geode_simplex/bin/geode_simplex_py_metric.pyi,sha256=gtamNPxREN-jLnVycGCzs90NCs_39IZO72aFAz4YA-k,3936
|
|
28
|
+
geode_simplex/bin/geode_simplex_py_section.cp310-win_amd64.pyd,sha256=XNrcciMnxs5O_8JgFf5BwVZMNwFVQk4i-32SuJEEV5k,135168
|
|
29
|
+
geode_simplex/bin/geode_simplex_py_section.pyi,sha256=B2xvie597HPk_P37O2_TE6IRLMRK03fzW1B1UkJdrGE,588
|
|
30
|
+
geode_simplex/bin/msvcp140.dll,sha256=D4hbUJpoXSu_plL-0mtfsx2I-9qwqXjGQdHHuKpGCqk,557728
|
|
31
|
+
geode_simplex/bin/msvcp140_1.dll,sha256=v61a70xjpmnjwUBlXN_fOVtsl5tACkR71dy2XtiCbD0,35952
|
|
32
|
+
geode_simplex/bin/msvcp140_2.dll,sha256=PqBvDuCYtII8t5WZ3zeA5_I8zlLBmqwx0qDUfv4zpek,280200
|
|
33
|
+
geode_simplex/bin/msvcp140_atomic_wait.dll,sha256=ZAsq787UhNA2jupb3Qat3QZYo6cKSSVuVg1pI7QEpHk,50304
|
|
34
|
+
geode_simplex/bin/msvcp140_codecvt_ids.dll,sha256=8gaaUogOyIXufwURGGEA63-toEEaK0lI-v6nc1uHihg,31872
|
|
35
|
+
geode_simplex/bin/vcruntime140.dll,sha256=1eTZo-g1-meUUBRdan2U42VzpQkxcRGQTZs3EsMNkGY,124544
|
|
36
|
+
geode_simplex/bin/vcruntime140_1.dll,sha256=Hy1BxKpdsLwz6_e2bXKUOoF9fObL6IBQKpQDgjYzCT8,49792
|
|
37
|
+
geode_simplex-9.8.11rc2.dist-info/METADATA,sha256=eO4w9nphBsGVSPJwsck2Ricci--6sV1FLChEm8h0y1Q,1916
|
|
38
|
+
geode_simplex-9.8.11rc2.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
|
|
39
|
+
geode_simplex-9.8.11rc2.dist-info/top_level.txt,sha256=qVrD68Hw2vhKcJrG51EYDm9MTGp9SfmZRdSrRKjmdFI,14
|
|
40
|
+
geode_simplex-9.8.11rc2.dist-info/RECORD,,
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
geode_simplex/__init__.py,sha256=NPct2BOWl1fv1Mv9w9SVyl7aF2z7MUwD65XQkF1nxGI,241
|
|
2
|
-
geode_simplex/brep_simplex.py,sha256=zzcn7P2AFHe5XXeF1fcHApon2myLdsOmL8a-Ztt00Sw,267
|
|
3
|
-
geode_simplex/metric_simplex.py,sha256=uiVhcTX7_atutwGZaBBeCJkqqDaTxppgcTu9pFivWMY,195
|
|
4
|
-
geode_simplex/section_simplex.py,sha256=AJwDTmmTMqskddfzvXav_Dn2QF8EJuZaccETwOar8jE,247
|
|
5
|
-
geode_simplex/bin/Geode-Simplex_brep.dll,sha256=rWJ7DXBuanEwq3IN-ZYVTolmj-w8jj0CycFB5d9m45Y,2310656
|
|
6
|
-
geode_simplex/bin/Geode-Simplex_core.dll,sha256=6AqkKxcdXxa64449y3R-Qg7kFB4N5YnQN0mJuUy6w_I,131584
|
|
7
|
-
geode_simplex/bin/Geode-Simplex_corner.dll,sha256=-yOVYfD1dLcekKqMFQvwtHIZ-swSOKs78pvb4RnQD7o,38400
|
|
8
|
-
geode_simplex/bin/Geode-Simplex_line2d.dll,sha256=uFHruyPII4iCxfbBdmiuitbAwqRBzVxGws_o9N4EJ_4,61440
|
|
9
|
-
geode_simplex/bin/Geode-Simplex_line3d.dll,sha256=SoR2WVHMNtoQnhwqPN0MZejnizFSwp0iJLlFCycaPO4,64000
|
|
10
|
-
geode_simplex/bin/Geode-Simplex_line_common.dll,sha256=REFaQq7B8C19N054d6yMid097OVXghqWC0V6OiwZwFE,221696
|
|
11
|
-
geode_simplex/bin/Geode-Simplex_metric.dll,sha256=qC-6uIgPCfGk0i6Xl8aZdCx5ORYddaysWjRuwvQezLw,198144
|
|
12
|
-
geode_simplex/bin/Geode-Simplex_section.dll,sha256=hgbyYGqYLAjxSOTP8qyFEUCJu0D_F80vJKieuVk3gpw,2036736
|
|
13
|
-
geode_simplex/bin/Geode-Simplex_solid.dll,sha256=AVLFE1CyPZAa0AX4cNugAVet3Lz4R4o0nj5Y1YcTPEs,696320
|
|
14
|
-
geode_simplex/bin/Geode-Simplex_surface2d.dll,sha256=Cz4eMhfgnhot7cKo2PHouWvqEDhfg-TC6qVTM0PgZCI,115200
|
|
15
|
-
geode_simplex/bin/Geode-Simplex_surface3d.dll,sha256=Zv36Ru5D0i1bwXKw1vC0DtJnOFf9mnZwwF9nZjO1faw,264192
|
|
16
|
-
geode_simplex/bin/Geode-Simplex_surface_common.dll,sha256=Na74zweGs9dMOUOPw-zHHmxneQz9u30EIh_b-R5WriQ,297984
|
|
17
|
-
geode_simplex/bin/concrt140.dll,sha256=JAU1XwpYBnslj43zPDJ-Oj1xbqrFo6Wuu3V4Qthb03Y,324208
|
|
18
|
-
geode_simplex/bin/geode_simplex_py_brep.cp310-win_amd64.pyd,sha256=gtRdDs_PbDaaaeePelY-F4KeeJYRrHPPjYFBBTyeMQc,135168
|
|
19
|
-
geode_simplex/bin/geode_simplex_py_metric.cp310-win_amd64.pyd,sha256=IgAjKiPdy3QRXbvM3O6D9QixjISBIgN2bajiPBgkugY,165376
|
|
20
|
-
geode_simplex/bin/geode_simplex_py_section.cp310-win_amd64.pyd,sha256=s2ji87KNu28GGm-FAMHQuizruHwgoVH5jSRrl9ojXN0,135168
|
|
21
|
-
geode_simplex/bin/msvcp140.dll,sha256=D4hbUJpoXSu_plL-0mtfsx2I-9qwqXjGQdHHuKpGCqk,557728
|
|
22
|
-
geode_simplex/bin/msvcp140_1.dll,sha256=v61a70xjpmnjwUBlXN_fOVtsl5tACkR71dy2XtiCbD0,35952
|
|
23
|
-
geode_simplex/bin/msvcp140_2.dll,sha256=PqBvDuCYtII8t5WZ3zeA5_I8zlLBmqwx0qDUfv4zpek,280200
|
|
24
|
-
geode_simplex/bin/msvcp140_atomic_wait.dll,sha256=ZAsq787UhNA2jupb3Qat3QZYo6cKSSVuVg1pI7QEpHk,50304
|
|
25
|
-
geode_simplex/bin/msvcp140_codecvt_ids.dll,sha256=8gaaUogOyIXufwURGGEA63-toEEaK0lI-v6nc1uHihg,31872
|
|
26
|
-
geode_simplex/bin/vcruntime140.dll,sha256=1eTZo-g1-meUUBRdan2U42VzpQkxcRGQTZs3EsMNkGY,124544
|
|
27
|
-
geode_simplex/bin/vcruntime140_1.dll,sha256=Hy1BxKpdsLwz6_e2bXKUOoF9fObL6IBQKpQDgjYzCT8,49792
|
|
28
|
-
geode_simplex-9.5.5.dist-info/METADATA,sha256=qgoL0x_WosOizlT774EZj7fBe7RJYbYnGHCAXaQ2FUY,1911
|
|
29
|
-
geode_simplex-9.5.5.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
|
|
30
|
-
geode_simplex-9.5.5.dist-info/top_level.txt,sha256=qVrD68Hw2vhKcJrG51EYDm9MTGp9SfmZRdSrRKjmdFI,14
|
|
31
|
-
geode_simplex-9.5.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|