Geode-Explicit 6.1.39rc1__cp310-cp310-win_amd64.whl → 6.6.2rc1__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.
Potentially problematic release.
This version of Geode-Explicit might be problematic. Click here for more details.
- geode_explicit/__init__.pyi +17 -0
- geode_explicit/bin/Geode-Explicit_brep.dll +0 -0
- geode_explicit/bin/Geode-Explicit_common.dll +0 -0
- geode_explicit/bin/Geode-Explicit_section.dll +0 -0
- geode_explicit/bin/__init__.pyi +4 -0
- geode_explicit/bin/geode_explicit_py_brep.cp310-win_amd64.pyd +0 -0
- geode_explicit/bin/geode_explicit_py_brep.pyi +37 -0
- geode_explicit/bin/geode_explicit_py_section.cp310-win_amd64.pyd +0 -0
- geode_explicit/bin/geode_explicit_py_section.pyi +20 -0
- geode_explicit/brep_explicit.pyi +10 -0
- geode_explicit/py.typed +0 -0
- geode_explicit/section_explicit.pyi +8 -0
- {geode_explicit-6.1.39rc1.dist-info → geode_explicit-6.6.2rc1.dist-info}/METADATA +6 -6
- geode_explicit-6.6.2rc1.dist-info/RECORD +19 -0
- {geode_explicit-6.1.39rc1.dist-info → geode_explicit-6.6.2rc1.dist-info}/WHEEL +1 -1
- geode_explicit-6.1.39rc1.dist-info/RECORD +0 -12
- {geode_explicit-6.1.39rc1.dist-info → geode_explicit-6.6.2rc1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
import geode_background as geode_background
|
|
3
|
+
import geode_common as geode_common
|
|
4
|
+
import geode_conversion as geode_conversion
|
|
5
|
+
from geode_explicit.bin.geode_explicit_py_brep import BRepExplicitModeler
|
|
6
|
+
from geode_explicit.bin.geode_explicit_py_brep import BRepVolumicInserter
|
|
7
|
+
from geode_explicit.bin.geode_explicit_py_brep import ExplicitBRepLibrary
|
|
8
|
+
from geode_explicit.bin.geode_explicit_py_section import ExplicitSectionLibrary
|
|
9
|
+
from geode_explicit.bin.geode_explicit_py_section import SectionExplicitModeler
|
|
10
|
+
import opengeode as opengeode
|
|
11
|
+
import opengeode_inspector as opengeode_inspector
|
|
12
|
+
import os as os
|
|
13
|
+
import pathlib as pathlib
|
|
14
|
+
from . import bin
|
|
15
|
+
from . import brep_explicit
|
|
16
|
+
from . import section_explicit
|
|
17
|
+
__all__: list[str] = ['BRepExplicitModeler', 'BRepVolumicInserter', 'ExplicitBRepLibrary', 'ExplicitSectionLibrary', 'SectionExplicitModeler', 'bin', 'brep_explicit', 'geode_background', 'geode_common', 'geode_conversion', 'opengeode', 'opengeode_inspector', 'os', 'pathlib', 'section_explicit']
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Geode-Explicit Python binding for BRep
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
import opengeode.bin.opengeode_py_mesh
|
|
6
|
+
import opengeode.bin.opengeode_py_model
|
|
7
|
+
__all__: list[str] = ['BRepExplicitModeler', 'BRepVolumicInserter', 'ExplicitBRepLibrary']
|
|
8
|
+
class BRepExplicitModeler:
|
|
9
|
+
def __init__(self) -> None:
|
|
10
|
+
...
|
|
11
|
+
def add_brep(self, arg0: opengeode.bin.opengeode_py_model.BRep) -> None:
|
|
12
|
+
...
|
|
13
|
+
def add_corner(self, arg0: opengeode.bin.opengeode_py_model.Corner3D) -> None:
|
|
14
|
+
...
|
|
15
|
+
def add_curve(self, arg0: opengeode.bin.opengeode_py_mesh.EdgedCurve3D) -> None:
|
|
16
|
+
...
|
|
17
|
+
def add_line(self, arg0: opengeode.bin.opengeode_py_model.Line3D) -> None:
|
|
18
|
+
...
|
|
19
|
+
def add_point_set(self, arg0: opengeode.bin.opengeode_py_mesh.PointSet3D) -> None:
|
|
20
|
+
...
|
|
21
|
+
def add_surface(self, arg0: opengeode.bin.opengeode_py_model.Surface3D) -> None:
|
|
22
|
+
...
|
|
23
|
+
def add_triangulated_surface(self, arg0: opengeode.bin.opengeode_py_mesh.TriangulatedSurface3D) -> None:
|
|
24
|
+
...
|
|
25
|
+
def build(self) -> opengeode.bin.opengeode_py_model.BRep:
|
|
26
|
+
...
|
|
27
|
+
class BRepVolumicInserter:
|
|
28
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_model.BRep) -> None:
|
|
29
|
+
...
|
|
30
|
+
def add_scalar_isovalues(self, arg0: str, arg1: list[float]) -> None:
|
|
31
|
+
...
|
|
32
|
+
def build(self) -> None:
|
|
33
|
+
...
|
|
34
|
+
class ExplicitBRepLibrary:
|
|
35
|
+
@staticmethod
|
|
36
|
+
def initialize() -> None:
|
|
37
|
+
...
|
|
Binary file
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Geode-Explicit Python binding for Section
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
import opengeode.bin.opengeode_py_mesh
|
|
6
|
+
import opengeode.bin.opengeode_py_model
|
|
7
|
+
__all__: list[str] = ['ExplicitSectionLibrary', 'SectionExplicitModeler']
|
|
8
|
+
class ExplicitSectionLibrary:
|
|
9
|
+
@staticmethod
|
|
10
|
+
def initialize() -> None:
|
|
11
|
+
...
|
|
12
|
+
class SectionExplicitModeler:
|
|
13
|
+
def __init__(self) -> None:
|
|
14
|
+
...
|
|
15
|
+
def add_curve(self, arg0: opengeode.bin.opengeode_py_mesh.EdgedCurve2D) -> None:
|
|
16
|
+
...
|
|
17
|
+
def add_section(self, arg0: opengeode.bin.opengeode_py_model.Section) -> None:
|
|
18
|
+
...
|
|
19
|
+
def build(self) -> opengeode.bin.opengeode_py_model.Section:
|
|
20
|
+
...
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
import geode_background as geode_background
|
|
3
|
+
import geode_common as geode_common
|
|
4
|
+
import geode_conversion as geode_conversion
|
|
5
|
+
from geode_explicit.bin.geode_explicit_py_brep import BRepExplicitModeler
|
|
6
|
+
from geode_explicit.bin.geode_explicit_py_brep import BRepVolumicInserter
|
|
7
|
+
from geode_explicit.bin.geode_explicit_py_brep import ExplicitBRepLibrary
|
|
8
|
+
import opengeode as opengeode
|
|
9
|
+
import opengeode_inspector as opengeode_inspector
|
|
10
|
+
__all__: list[str] = ['BRepExplicitModeler', 'BRepVolumicInserter', 'ExplicitBRepLibrary', 'geode_background', 'geode_common', 'geode_conversion', 'opengeode', 'opengeode_inspector']
|
geode_explicit/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_conversion as geode_conversion
|
|
5
|
+
from geode_explicit.bin.geode_explicit_py_section import ExplicitSectionLibrary
|
|
6
|
+
from geode_explicit.bin.geode_explicit_py_section import SectionExplicitModeler
|
|
7
|
+
import opengeode as opengeode
|
|
8
|
+
__all__: list[str] = ['ExplicitSectionLibrary', 'SectionExplicitModeler', 'geode_background', 'geode_common', 'geode_conversion', 'opengeode']
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Geode-Explicit
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.6.2rc1
|
|
4
4
|
Summary: Geode-solutions OpenGeode module for building explicit models
|
|
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-conversion==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-conversion==6.*,>=6.5.5
|
|
12
|
+
Requires-Dist: opengeode-core==15.*,>=15.30.0
|
|
13
|
+
Requires-Dist: opengeode-inspector==6.*,>=6.8.5
|
|
14
14
|
|
|
15
15
|
<h1 align="center">Geode-Explicit<sup><i>by Geode-solutions</i></sup></h1>
|
|
16
16
|
<h3 align="center">Geode-solutions OpenGeode module for building explicit models</h3>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
geode_explicit/__init__.py,sha256=5_t-WCqP6hTTwAaKvRnGjUQ9OsgNKdRsOlVAYbUNeew,212
|
|
2
|
+
geode_explicit/__init__.pyi,sha256=uqIsZAJxqk264gMWfEr7h6g4fFjZO9ZCA5hziSK2o50,1053
|
|
3
|
+
geode_explicit/brep_explicit.py,sha256=6Gt0ngzvcg0kkNFIxaR1f_82MUV5zEQOvsWCqv78Ldc,271
|
|
4
|
+
geode_explicit/brep_explicit.pyi,sha256=oApJEG_rDGlYiab0KzQIDVDuZEy-7mSKW6Kg-Q5MoYQ,654
|
|
5
|
+
geode_explicit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
geode_explicit/section_explicit.py,sha256=GI8cv7ihpebUcmsY7VP_80x21DUsiKpt5uWe6zMj1w8,249
|
|
7
|
+
geode_explicit/section_explicit.pyi,sha256=7NqWR0ZnE4oY03YNYHYDLTWicTD6OKRIR13apqXS9PM,500
|
|
8
|
+
geode_explicit/bin/Geode-Explicit_brep.dll,sha256=Azq6cy5nrYxsQnKi9uIu3AK5cdy5x3LObOIIF4Sor0U,4829184
|
|
9
|
+
geode_explicit/bin/Geode-Explicit_common.dll,sha256=fkhwZSHXv8ldX_adm3ahR1XL9HTwR0MJWzZ4T1YIlYc,124928
|
|
10
|
+
geode_explicit/bin/Geode-Explicit_section.dll,sha256=xAqrRPlG4VAVf_EItXBJZjttEein7p4SONCHh5QMlmU,4385280
|
|
11
|
+
geode_explicit/bin/__init__.pyi,sha256=MsUSAMGMeRdIPadC2byXyFGFx76LCWL7kd9AeccI17g,193
|
|
12
|
+
geode_explicit/bin/geode_explicit_py_brep.cp310-win_amd64.pyd,sha256=1Zbed-gVM5rbqu-cjuAsROAVSvqNqWR_MU5sKxIx5Uo,150528
|
|
13
|
+
geode_explicit/bin/geode_explicit_py_brep.pyi,sha256=kzulZOvo65F21uKvPWXTywOPrVCMl7ulKIuQFGpZnLk,1453
|
|
14
|
+
geode_explicit/bin/geode_explicit_py_section.cp310-win_amd64.pyd,sha256=IFgSdv2uzSwPA4UIueECzIQ7UfIyLRIpsJYibomKZbs,139776
|
|
15
|
+
geode_explicit/bin/geode_explicit_py_section.pyi,sha256=6RWY1lzvdL2YcMpQLPDX2urSoGASiI2QA9XbA5CXeSE,691
|
|
16
|
+
geode_explicit-6.6.2rc1.dist-info/METADATA,sha256=XcyUGMi9SCSzUT9-CB0O3sipM_f7V5CWI1KwOKm_QAY,2143
|
|
17
|
+
geode_explicit-6.6.2rc1.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
|
|
18
|
+
geode_explicit-6.6.2rc1.dist-info/top_level.txt,sha256=SLuJS840PQSB1EAIYibu72OEG1sORAkOdcw3z29RuQQ,15
|
|
19
|
+
geode_explicit-6.6.2rc1.dist-info/RECORD,,
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
geode_explicit/__init__.py,sha256=5_t-WCqP6hTTwAaKvRnGjUQ9OsgNKdRsOlVAYbUNeew,212
|
|
2
|
-
geode_explicit/brep_explicit.py,sha256=6Gt0ngzvcg0kkNFIxaR1f_82MUV5zEQOvsWCqv78Ldc,271
|
|
3
|
-
geode_explicit/section_explicit.py,sha256=GI8cv7ihpebUcmsY7VP_80x21DUsiKpt5uWe6zMj1w8,249
|
|
4
|
-
geode_explicit/bin/Geode-Explicit_brep.dll,sha256=Zanaa9INu6SxM-jyWytYTZ4yjh6MzyO67x45YpV0Et4,2438144
|
|
5
|
-
geode_explicit/bin/Geode-Explicit_common.dll,sha256=VB0CV9rd3KWXMOdFRYOKVJayR4hH87DCzHRr9Abybrk,99840
|
|
6
|
-
geode_explicit/bin/Geode-Explicit_section.dll,sha256=S7GVj-nGKdtRoY2P2Pj4EIq0VPD5s9f3Ei6SAgOoy_I,2057216
|
|
7
|
-
geode_explicit/bin/geode_explicit_py_brep.cp310-win_amd64.pyd,sha256=xkjiZdERYXKUyT0TMoKvrn7d-qPjLKCH00ynw6DqGMY,160256
|
|
8
|
-
geode_explicit/bin/geode_explicit_py_section.cp310-win_amd64.pyd,sha256=h_qeScsLBrcfl59da54v6GjemRG3yUgM9W5X4Li-ae8,145920
|
|
9
|
-
geode_explicit-6.1.39rc1.dist-info/METADATA,sha256=xCDMlb6FzQVVZsIQmWWPlx4WF7VOk_xlFl3HujW26Rs,2158
|
|
10
|
-
geode_explicit-6.1.39rc1.dist-info/WHEEL,sha256=f7LviPjlKeAUpCmKrQrAXn06zBZT0604QctSZKHK6ZM,101
|
|
11
|
-
geode_explicit-6.1.39rc1.dist-info/top_level.txt,sha256=SLuJS840PQSB1EAIYibu72OEG1sORAkOdcw3z29RuQQ,15
|
|
12
|
-
geode_explicit-6.1.39rc1.dist-info/RECORD,,
|
|
File without changes
|