Geode-Simplex 11.3.0rc1__cp313-cp313-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__.py +8 -0
- geode_simplex/__init__.pyi +19 -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/concrt140.dll +0 -0
- geode_simplex/bin/geode_simplex_py_brep.cp313-win_amd64.pyd +0 -0
- geode_simplex/bin/geode_simplex_py_brep.pyi +13 -0
- geode_simplex/bin/geode_simplex_py_metric.cp313-win_amd64.pyd +0 -0
- geode_simplex/bin/geode_simplex_py_metric.pyi +87 -0
- geode_simplex/bin/geode_simplex_py_section.cp313-win_amd64.pyd +0 -0
- geode_simplex/bin/geode_simplex_py_section.pyi +13 -0
- geode_simplex/bin/msvcp140.dll +0 -0
- geode_simplex/bin/msvcp140_1.dll +0 -0
- geode_simplex/bin/msvcp140_2.dll +0 -0
- geode_simplex/bin/msvcp140_atomic_wait.dll +0 -0
- geode_simplex/bin/msvcp140_codecvt_ids.dll +0 -0
- geode_simplex/bin/vcruntime140.dll +0 -0
- geode_simplex/bin/vcruntime140_1.dll +0 -0
- geode_simplex/brep_simplex.py +12 -0
- geode_simplex/brep_simplex.pyi +8 -0
- geode_simplex/metric_simplex.py +10 -0
- geode_simplex/metric_simplex.pyi +7 -0
- geode_simplex/py.typed +0 -0
- geode_simplex/section_simplex.py +11 -0
- geode_simplex/section_simplex.pyi +7 -0
- geode_simplex-11.3.0rc1.dist-info/METADATA +36 -0
- geode_simplex-11.3.0rc1.dist-info/RECORD +40 -0
- geode_simplex-11.3.0rc1.dist-info/WHEEL +5 -0
- geode_simplex-11.3.0rc1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
import geode_background as geode_background
|
|
3
|
+
import geode_common as geode_common
|
|
4
|
+
from geode_simplex.bin.geode_simplex_py_brep import GeodeSimplexBRepLibrary
|
|
5
|
+
from geode_simplex.bin.geode_simplex_py_brep import brep_simplex_remesh
|
|
6
|
+
from geode_simplex.bin.geode_simplex_py_metric import BRepIsotropicMetricConstraints
|
|
7
|
+
from geode_simplex.bin.geode_simplex_py_metric import GeodeSimplexMetricLibrary
|
|
8
|
+
from geode_simplex.bin.geode_simplex_py_metric import SectionIsotropicMetricConstraints
|
|
9
|
+
from geode_simplex.bin.geode_simplex_py_section import GeodeSimplexSectionLibrary
|
|
10
|
+
from geode_simplex.bin.geode_simplex_py_section import section_simplex_remesh
|
|
11
|
+
import opengeode as opengeode
|
|
12
|
+
import opengeode_inspector as opengeode_inspector
|
|
13
|
+
import os as os
|
|
14
|
+
import pathlib as pathlib
|
|
15
|
+
from . import bin
|
|
16
|
+
from . import brep_simplex
|
|
17
|
+
from . import metric_simplex
|
|
18
|
+
from . import section_simplex
|
|
19
|
+
__all__: list[str] = ['BRepIsotropicMetricConstraints', 'GeodeSimplexBRepLibrary', 'GeodeSimplexMetricLibrary', 'GeodeSimplexSectionLibrary', 'SectionIsotropicMetricConstraints', 'bin', 'brep_simplex', 'brep_simplex_remesh', 'geode_background', 'geode_common', '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
|
|
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] = ['GeodeSimplexBRepLibrary', 'brep_simplex_remesh']
|
|
8
|
+
class GeodeSimplexBRepLibrary:
|
|
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) -> None:
|
|
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] = ['BRepIsotropicMetricConstraints', 'GeodeSimplexMetricLibrary', 'SectionIsotropicMetricConstraints']
|
|
10
|
+
class BRepIsotropicMetricConstraints:
|
|
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: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
30
|
+
...
|
|
31
|
+
def set_corner_metric(self, arg0: opengeode.bin.opengeode_py_model.Corner3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
32
|
+
...
|
|
33
|
+
def set_default_metric(self, arg0: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
34
|
+
...
|
|
35
|
+
def set_edged_curve_metric(self, arg0: opengeode.bin.opengeode_py_mesh.EdgedCurve3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
36
|
+
...
|
|
37
|
+
def set_gradation(self, arg0: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
38
|
+
...
|
|
39
|
+
def set_line_metric(self, arg0: opengeode.bin.opengeode_py_model.Line3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
40
|
+
...
|
|
41
|
+
def set_point_set_metric(self, arg0: opengeode.bin.opengeode_py_mesh.PointSet3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
42
|
+
...
|
|
43
|
+
def set_surface_metric(self, arg0: opengeode.bin.opengeode_py_model.Surface3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
44
|
+
...
|
|
45
|
+
def set_triangulated_surface_metric(self, arg0: opengeode.bin.opengeode_py_mesh.TriangulatedSurface3D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
46
|
+
...
|
|
47
|
+
def surface_metric(self, arg0: opengeode.bin.opengeode_py_model.Surface3D) -> float | None:
|
|
48
|
+
...
|
|
49
|
+
class GeodeSimplexMetricLibrary:
|
|
50
|
+
@staticmethod
|
|
51
|
+
def initialize() -> None:
|
|
52
|
+
...
|
|
53
|
+
class SectionIsotropicMetricConstraints:
|
|
54
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_model.Section) -> None:
|
|
55
|
+
...
|
|
56
|
+
def build_metric(self) -> geode_common.bin.geode_common_py_metric.Metric2D:
|
|
57
|
+
...
|
|
58
|
+
def corner_metric(self, arg0: opengeode.bin.opengeode_py_model.Corner2D) -> float | None:
|
|
59
|
+
...
|
|
60
|
+
def default_metric(self) -> float:
|
|
61
|
+
...
|
|
62
|
+
def export_constraints(self, arg0: str) -> None:
|
|
63
|
+
...
|
|
64
|
+
def gradation(self) -> float:
|
|
65
|
+
...
|
|
66
|
+
def import_constraints(self, arg0: str) -> None:
|
|
67
|
+
...
|
|
68
|
+
def line_metric(self, arg0: opengeode.bin.opengeode_py_model.Line2D) -> float | None:
|
|
69
|
+
...
|
|
70
|
+
def set_corner_metric(self, arg0: opengeode.bin.opengeode_py_model.Corner2D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
71
|
+
...
|
|
72
|
+
def set_default_metric(self, arg0: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
73
|
+
...
|
|
74
|
+
def set_edged_curve_metric(self, arg0: opengeode.bin.opengeode_py_mesh.EdgedCurve2D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
75
|
+
...
|
|
76
|
+
def set_gradation(self, arg0: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
77
|
+
...
|
|
78
|
+
def set_line_metric(self, arg0: opengeode.bin.opengeode_py_model.Line2D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
79
|
+
...
|
|
80
|
+
def set_point_set_metric(self, arg0: opengeode.bin.opengeode_py_mesh.PointSet2D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
81
|
+
...
|
|
82
|
+
def set_surface_metric(self, arg0: opengeode.bin.opengeode_py_model.Surface2D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
83
|
+
...
|
|
84
|
+
def set_triangulated_surface_metric(self, arg0: opengeode.bin.opengeode_py_mesh.TriangulatedSurface2D, arg1: typing.SupportsFloat | typing.SupportsIndex) -> None:
|
|
85
|
+
...
|
|
86
|
+
def surface_metric(self, arg0: opengeode.bin.opengeode_py_model.Surface2D) -> float | 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] = ['GeodeSimplexSectionLibrary', 'section_simplex_remesh']
|
|
8
|
+
class GeodeSimplexSectionLibrary:
|
|
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) -> None:
|
|
13
|
+
...
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright (c) 2019 - 2026 Geode-solutions. All rights reserved.
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
import opengeode
|
|
6
|
+
import opengeode_inspector
|
|
7
|
+
import geode_common
|
|
8
|
+
import geode_background
|
|
9
|
+
|
|
10
|
+
from .bin.geode_simplex_py_brep import *
|
|
11
|
+
|
|
12
|
+
GeodeSimplexBRepLibrary.initialize()
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
import geode_background as geode_background
|
|
3
|
+
import geode_common as geode_common
|
|
4
|
+
from geode_simplex.bin.geode_simplex_py_brep import GeodeSimplexBRepLibrary
|
|
5
|
+
from geode_simplex.bin.geode_simplex_py_brep import brep_simplex_remesh
|
|
6
|
+
import opengeode as opengeode
|
|
7
|
+
import opengeode_inspector as opengeode_inspector
|
|
8
|
+
__all__: list[str] = ['GeodeSimplexBRepLibrary', 'brep_simplex_remesh', 'geode_background', 'geode_common', '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 BRepIsotropicMetricConstraints
|
|
4
|
+
from geode_simplex.bin.geode_simplex_py_metric import GeodeSimplexMetricLibrary
|
|
5
|
+
from geode_simplex.bin.geode_simplex_py_metric import SectionIsotropicMetricConstraints
|
|
6
|
+
import opengeode as opengeode
|
|
7
|
+
__all__: list[str] = ['BRepIsotropicMetricConstraints', 'GeodeSimplexMetricLibrary', 'SectionIsotropicMetricConstraints', 'geode_common', 'opengeode']
|
geode_simplex/py.typed
ADDED
|
File without changes
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
import geode_background as geode_background
|
|
3
|
+
import geode_common as geode_common
|
|
4
|
+
from geode_simplex.bin.geode_simplex_py_section import GeodeSimplexSectionLibrary
|
|
5
|
+
from geode_simplex.bin.geode_simplex_py_section import section_simplex_remesh
|
|
6
|
+
import opengeode as opengeode
|
|
7
|
+
__all__: list[str] = ['GeodeSimplexSectionLibrary', 'geode_background', 'geode_common', 'opengeode', 'section_simplex_remesh']
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Geode-Simplex
|
|
3
|
+
Version: 11.3.0rc1
|
|
4
|
+
Summary: Simplex remeshing Geode-solutions OpenGeode module
|
|
5
|
+
Author-email: Geode-solutions <contact@geode-solutions.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Requires-Python: <3.15,>=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: geode-background==9.*,>=9.13.0rc1
|
|
10
|
+
Requires-Dist: geode-common==33.*,>=33.23.0rc2
|
|
11
|
+
Requires-Dist: opengeode-core==17.*,>=17.3.0rc1
|
|
12
|
+
Requires-Dist: opengeode-inspector==6.*,>=6.11.0rc1
|
|
13
|
+
|
|
14
|
+
<h1 align="center">Geode-Simplex<sup><i>by Geode-solutions</i></sup></h1>
|
|
15
|
+
<h3 align="center">Simplex remeshing</h3>
|
|
16
|
+
|
|
17
|
+
<p align="center">
|
|
18
|
+
<img src="https://github.com/Geode-solutions/Geode-Simplex_private/workflows/CI/badge.svg" alt="Build Status">
|
|
19
|
+
<img src="https://github.com/Geode-solutions/Geode-Simplex_private/workflows/CD/badge.svg" alt="Deploy Status">
|
|
20
|
+
<img src="https://img.shields.io/github/release/Geode-solutions/Geode-Simplex_private.svg" alt="Version">
|
|
21
|
+
<img src="https://img.shields.io/pypi/v/geode-simplex" alt="PyPI" >
|
|
22
|
+
</p>
|
|
23
|
+
|
|
24
|
+
<p align="center">
|
|
25
|
+
<img src="https://img.shields.io/static/v1?label=Windows&logo=windows&logoColor=white&message=support&color=success" alt="Windows support">
|
|
26
|
+
<img src="https://img.shields.io/static/v1?label=Ubuntu&logo=Ubuntu&logoColor=white&message=support&color=success" alt="Ubuntu support">
|
|
27
|
+
<img src="https://img.shields.io/static/v1?label=Red%20Hat&logo=Red-Hat&logoColor=white&message=support&color=success" alt="Red Hat support">
|
|
28
|
+
</p>
|
|
29
|
+
|
|
30
|
+
<p align="center">
|
|
31
|
+
<img src="https://img.shields.io/badge/C%2B%2B-17-blue.svg" alt="Language">
|
|
32
|
+
<img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="Semantic-release">
|
|
33
|
+
<a href="https://opengeode-slack-invite.herokuapp.com">
|
|
34
|
+
<img src="https://opengeode-slack-invite.herokuapp.com/badge.svg" alt="Slack invite">
|
|
35
|
+
</a>
|
|
36
|
+
</p>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
geode_simplex/__init__.py,sha256=I85cJxHY94vFQYqb67uLg15fG5N6FuQ4VXCJAASf9js,241
|
|
2
|
+
geode_simplex/__init__.pyi,sha256=KVOkK1wu8MtaNfzicSKAnj7_EuwodNBp3zZMWQX0_Do,1298
|
|
3
|
+
geode_simplex/brep_simplex.py,sha256=tzMGOSPDNlQJuDNvkE8hkgrbAvV1-YsiHjbqp-pcq8g,251
|
|
4
|
+
geode_simplex/brep_simplex.pyi,sha256=zYtkQBbepdYKa009Qe5vhKTDdRHw0rGKTzJf6ThQHEw,495
|
|
5
|
+
geode_simplex/metric_simplex.py,sha256=ioGhcbMdGceieqg-Xj1JqceHGB487c5cbb4AUyCHAG0,202
|
|
6
|
+
geode_simplex/metric_simplex.pyi,sha256=thuu4kzXb9HkGjkYN30vLolG7uJnOq2-eFcKF5rieF0,512
|
|
7
|
+
geode_simplex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
geode_simplex/section_simplex.py,sha256=bvEEHC8LOTbJDb_0axvJ_7C6PGjxqemG-vdq4vHBcLs,229
|
|
9
|
+
geode_simplex/section_simplex.pyi,sha256=VyM9cL7ox1NnbTGNGtUeuOilGIkosaiwwHLCrzm9rHQ,439
|
|
10
|
+
geode_simplex/bin/Geode-Simplex_brep.dll,sha256=Nln2-m_pRdSXADIfnqCOs-hdzTAVHflk7zxXLqO09rA,4538368
|
|
11
|
+
geode_simplex/bin/Geode-Simplex_core.dll,sha256=v1ssMwkHaUL0W6_45RUYMFWGOyrKz5aQ08xtMBIvwms,142848
|
|
12
|
+
geode_simplex/bin/Geode-Simplex_corner.dll,sha256=c0czwzH9pJBi0DFMLONBbgE8fxyFA7cyVu_yFpWf_zw,21504
|
|
13
|
+
geode_simplex/bin/Geode-Simplex_line2d.dll,sha256=tVWkInciG8oYtINiIG19FCSupojt6gO9hivrzUU7xWU,62464
|
|
14
|
+
geode_simplex/bin/Geode-Simplex_line3d.dll,sha256=rgOVtoftrHtyMtfU1dVw3t9AmhGoPlT9Q4fjzO_HL44,64512
|
|
15
|
+
geode_simplex/bin/Geode-Simplex_line_common.dll,sha256=y1zcBxEYtcHydd6-CSIJqFVZ5e0Qv5NhepDqEEtToeE,130048
|
|
16
|
+
geode_simplex/bin/Geode-Simplex_metric.dll,sha256=P43ADW11BSr5zZ5d4xg9AD_diYKr3Pm0dBNdgVopnzM,219648
|
|
17
|
+
geode_simplex/bin/Geode-Simplex_section.dll,sha256=Zaqr0JLKhl1e3tyX7zAfyMU-MmcSARgIJ_z4v4aw474,4376064
|
|
18
|
+
geode_simplex/bin/Geode-Simplex_solid.dll,sha256=A_THqesAg74R117Sn99x0XxipJiXI6WQBVu6vqYPVqY,697344
|
|
19
|
+
geode_simplex/bin/Geode-Simplex_surface2d.dll,sha256=1rwrlJ2k1CE3hoqDuGXBz5DCpDM6T3fpQVY9pDlP7O4,119808
|
|
20
|
+
geode_simplex/bin/Geode-Simplex_surface3d.dll,sha256=IUGfU9yziXMF3CiDS0vkz9t-HqkmfPBTiSOVZVcbu8c,293888
|
|
21
|
+
geode_simplex/bin/Geode-Simplex_surface_common.dll,sha256=gGZkBX0m8EJEDAJY4f6Bhciyi7dFy0QDrAHanrGrHE0,315904
|
|
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.cp313-win_amd64.pyd,sha256=Zfxg9NPrS4zvzDk3rkiFEPAhtn1ol8zOZDv5zPOLQeg,164864
|
|
25
|
+
geode_simplex/bin/geode_simplex_py_brep.pyi,sha256=mEmeUt2zJ0mF4JwxVxI5TNJnXvMEScVaLj6q7qLAPHM,486
|
|
26
|
+
geode_simplex/bin/geode_simplex_py_metric.cp313-win_amd64.pyd,sha256=pwezWjsLMD4QFmkJPb_8uqPJ06buJKCBQDvoFBa7kKA,205824
|
|
27
|
+
geode_simplex/bin/geode_simplex_py_metric.pyi,sha256=1sDyKWjWDFHVl6FKUr2yJZpQhQNxjSkbzPjNBYtxtr8,4628
|
|
28
|
+
geode_simplex/bin/geode_simplex_py_section.cp313-win_amd64.pyd,sha256=nXwlQiBvPB9uQi8cfrqzpU0prnh6H1Dz7B5JUwKMcHo,164352
|
|
29
|
+
geode_simplex/bin/geode_simplex_py_section.pyi,sha256=giP9wfCFGc5iRZIV2xpEGqHpm5KXC86haHG0di5lhcs,504
|
|
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-11.3.0rc1.dist-info/METADATA,sha256=WVIBzGTN34dQ29wh4bWIq_AtzQnZVHp-djmpZOZYNjk,1885
|
|
38
|
+
geode_simplex-11.3.0rc1.dist-info/WHEEL,sha256=x5Wpw_tLx5PQKiWdxpqvs0e7Sg-SO0mTWdEADYDGPGA,101
|
|
39
|
+
geode_simplex-11.3.0rc1.dist-info/top_level.txt,sha256=qVrD68Hw2vhKcJrG51EYDm9MTGp9SfmZRdSrRKjmdFI,14
|
|
40
|
+
geode_simplex-11.3.0rc1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
geode_simplex
|