Geode-Conversion 6.5.10rc1__cp310-cp310-win_amd64.whl → 6.5.11rc1__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_conversion/__init__.pyi +3 -1
- geode_conversion/bin/Geode-Conversion_model.dll +0 -0
- geode_conversion/bin/geode_conversion_py_model.cp310-win_amd64.pyd +0 -0
- geode_conversion/bin/geode_conversion_py_model.pyi +5 -1
- geode_conversion/model_conversion.pyi +3 -1
- {geode_conversion-6.5.10rc1.dist-info → geode_conversion-6.5.11rc1.dist-info}/METADATA +3 -3
- geode_conversion-6.5.11rc1.dist-info/RECORD +13 -0
- geode_conversion-6.5.10rc1.dist-info/RECORD +0 -13
- {geode_conversion-6.5.10rc1.dist-info → geode_conversion-6.5.11rc1.dist-info}/WHEEL +0 -0
- {geode_conversion-6.5.10rc1.dist-info → geode_conversion-6.5.11rc1.dist-info}/top_level.txt +0 -0
geode_conversion/__init__.pyi
CHANGED
|
@@ -8,9 +8,11 @@ from geode_conversion.bin.geode_conversion_py_model import convert_meshes_into_s
|
|
|
8
8
|
from geode_conversion.bin.geode_conversion_py_model import convert_solid_elements_into_brep
|
|
9
9
|
from geode_conversion.bin.geode_conversion_py_model import convert_surface_elements_into_section
|
|
10
10
|
from geode_conversion.bin.geode_conversion_py_model import convert_surface_into_section_from_attribute
|
|
11
|
+
from geode_conversion.bin.geode_conversion_py_model import curve_from_surface_borders2d
|
|
12
|
+
from geode_conversion.bin.geode_conversion_py_model import curve_from_surface_borders3d
|
|
11
13
|
import opengeode as opengeode
|
|
12
14
|
import os as os
|
|
13
15
|
import pathlib as pathlib
|
|
14
16
|
from . import bin
|
|
15
17
|
from . import model_conversion
|
|
16
|
-
__all__: list[str] = ['ConversionModelLibrary', 'add_brep_sharp_features', 'add_section_sharp_features', 'bin', 'convert_meshes_into_brep', 'convert_meshes_into_section', 'convert_solid_elements_into_brep', 'convert_surface_elements_into_section', 'convert_surface_into_section_from_attribute', 'geode_common', 'model_conversion', 'opengeode', 'os', 'pathlib']
|
|
18
|
+
__all__: list[str] = ['ConversionModelLibrary', 'add_brep_sharp_features', 'add_section_sharp_features', 'bin', 'convert_meshes_into_brep', 'convert_meshes_into_section', 'convert_solid_elements_into_brep', 'convert_surface_elements_into_section', 'convert_surface_into_section_from_attribute', 'curve_from_surface_borders2d', 'curve_from_surface_borders3d', 'geode_common', 'model_conversion', 'opengeode', 'os', 'pathlib']
|
|
Binary file
|
|
Binary file
|
|
@@ -4,7 +4,7 @@ Geode-Conversion Python binding for model
|
|
|
4
4
|
from __future__ import annotations
|
|
5
5
|
import opengeode.bin.opengeode_py_mesh
|
|
6
6
|
import opengeode.bin.opengeode_py_model
|
|
7
|
-
__all__: list[str] = ['ConversionModelLibrary', 'add_brep_sharp_features', 'add_section_sharp_features', 'convert_meshes_into_brep', 'convert_meshes_into_section', 'convert_solid_elements_into_brep', 'convert_surface_elements_into_section', 'convert_surface_into_section_from_attribute']
|
|
7
|
+
__all__: list[str] = ['ConversionModelLibrary', 'add_brep_sharp_features', 'add_section_sharp_features', 'convert_meshes_into_brep', 'convert_meshes_into_section', 'convert_solid_elements_into_brep', 'convert_surface_elements_into_section', 'convert_surface_into_section_from_attribute', 'curve_from_surface_borders2d', 'curve_from_surface_borders3d']
|
|
8
8
|
class ConversionModelLibrary:
|
|
9
9
|
@staticmethod
|
|
10
10
|
def initialize() -> None:
|
|
@@ -23,3 +23,7 @@ def convert_surface_elements_into_section(arg0: opengeode.bin.opengeode_py_mesh.
|
|
|
23
23
|
...
|
|
24
24
|
def convert_surface_into_section_from_attribute(arg0: opengeode.bin.opengeode_py_mesh.SurfaceMesh2D, arg1: str) -> opengeode.bin.opengeode_py_model.Section:
|
|
25
25
|
...
|
|
26
|
+
def curve_from_surface_borders2d(arg0: opengeode.bin.opengeode_py_mesh.SurfaceMesh2D) -> opengeode.bin.opengeode_py_mesh.EdgedCurve2D:
|
|
27
|
+
...
|
|
28
|
+
def curve_from_surface_borders3d(arg0: opengeode.bin.opengeode_py_mesh.SurfaceMesh3D) -> opengeode.bin.opengeode_py_mesh.EdgedCurve3D:
|
|
29
|
+
...
|
|
@@ -8,5 +8,7 @@ from geode_conversion.bin.geode_conversion_py_model import convert_meshes_into_s
|
|
|
8
8
|
from geode_conversion.bin.geode_conversion_py_model import convert_solid_elements_into_brep
|
|
9
9
|
from geode_conversion.bin.geode_conversion_py_model import convert_surface_elements_into_section
|
|
10
10
|
from geode_conversion.bin.geode_conversion_py_model import convert_surface_into_section_from_attribute
|
|
11
|
+
from geode_conversion.bin.geode_conversion_py_model import curve_from_surface_borders2d
|
|
12
|
+
from geode_conversion.bin.geode_conversion_py_model import curve_from_surface_borders3d
|
|
11
13
|
import opengeode as opengeode
|
|
12
|
-
__all__: list[str] = ['ConversionModelLibrary', 'add_brep_sharp_features', 'add_section_sharp_features', 'convert_meshes_into_brep', 'convert_meshes_into_section', 'convert_solid_elements_into_brep', 'convert_surface_elements_into_section', 'convert_surface_into_section_from_attribute', 'geode_common', 'opengeode']
|
|
14
|
+
__all__: list[str] = ['ConversionModelLibrary', 'add_brep_sharp_features', 'add_section_sharp_features', 'convert_meshes_into_brep', 'convert_meshes_into_section', 'convert_solid_elements_into_brep', 'convert_surface_elements_into_section', 'convert_surface_into_section_from_attribute', 'curve_from_surface_borders2d', 'curve_from_surface_borders3d', 'geode_common', 'opengeode']
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Geode-Conversion
|
|
3
|
-
Version: 6.5.
|
|
3
|
+
Version: 6.5.11rc1
|
|
4
4
|
Summary: Conversion module for Geode-solutions OpenGeode modules
|
|
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-common==33.*,>=33.
|
|
10
|
-
Requires-Dist: opengeode-core==15.*,>=15.
|
|
9
|
+
Requires-Dist: geode-common==33.*,>=33.17.1rc2
|
|
10
|
+
Requires-Dist: opengeode-core==15.*,>=15.31.1rc1
|
|
11
11
|
|
|
12
12
|
<h1 align="center">Geode-Conversion<sup><i>by Geode-solutions</i></sup></h1>
|
|
13
13
|
<h3 align="center">Conversion OpenGeode module</h3>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
geode_conversion/__init__.py,sha256=8PRoMzJNA4V8Z2C-2knxE5LRiNwlG4kAJELzQjkQKK8,182
|
|
2
|
+
geode_conversion/__init__.pyi,sha256=ENuOk4W-wv_Nl6F418NRMBRIPPuTYwh9YuhhzC_2i_c,1525
|
|
3
|
+
geode_conversion/model_conversion.py,sha256=NCKxbZMW4Jj1pE2svb2vv2rm4zcyGENHoZOfZfYkH1k,201
|
|
4
|
+
geode_conversion/model_conversion.pyi,sha256=1YtPIgVyeA4PtgJty_U7kzRjTgoiWMW93epIK_ttFZM,1386
|
|
5
|
+
geode_conversion/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
geode_conversion/bin/Geode-Conversion_model.dll,sha256=rbZ1csvCs_BUkUSewWEgPvywiONCvye3bKWHEYFkqqI,5213184
|
|
7
|
+
geode_conversion/bin/__init__.pyi,sha256=yh7ncHmmeSlGtA3CfBWDiymDUfJHNjUXiSJyAJVlKHw,129
|
|
8
|
+
geode_conversion/bin/geode_conversion_py_model.cp310-win_amd64.pyd,sha256=-QA-gssZvSuLpUjLdUdkUSlA_nGrz7P9XRvCqfO5X_Q,160768
|
|
9
|
+
geode_conversion/bin/geode_conversion_py_model.pyi,sha256=9toBX3fx-txDMcqfnntqEP3NW3yO1PA44oKW4_RJgQg,2248
|
|
10
|
+
geode_conversion-6.5.11rc1.dist-info/METADATA,sha256=zrj-CEGi9TFfHjx9N70J-KmOeOosoyV1IyDdKWHfYg4,1980
|
|
11
|
+
geode_conversion-6.5.11rc1.dist-info/WHEEL,sha256=lVtJYX4SZwMxwg8oP4kB_UdF4VQRXLlqu7hUy_2nnAE,102
|
|
12
|
+
geode_conversion-6.5.11rc1.dist-info/top_level.txt,sha256=PnM_M6Sy8psC1M_rMpCs6FAGjv7uyDWsRvR46jFUpXU,17
|
|
13
|
+
geode_conversion-6.5.11rc1.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
geode_conversion/__init__.py,sha256=8PRoMzJNA4V8Z2C-2knxE5LRiNwlG4kAJELzQjkQKK8,182
|
|
2
|
-
geode_conversion/__init__.pyi,sha256=n8aHcP7G1qc8YdkqIz0pBvBQUrLjigjWWgJ1oqB1zP4,1283
|
|
3
|
-
geode_conversion/model_conversion.py,sha256=NCKxbZMW4Jj1pE2svb2vv2rm4zcyGENHoZOfZfYkH1k,201
|
|
4
|
-
geode_conversion/model_conversion.pyi,sha256=gBr9lMU_xY2rrNOa5hN503BrhlcBt8GGylyEQnZA93k,1144
|
|
5
|
-
geode_conversion/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
geode_conversion/bin/Geode-Conversion_model.dll,sha256=JKL15SehfIrh4GW9YKnjVdAsnq9NoFeyDB6wYhQByYg,5259776
|
|
7
|
-
geode_conversion/bin/__init__.pyi,sha256=yh7ncHmmeSlGtA3CfBWDiymDUfJHNjUXiSJyAJVlKHw,129
|
|
8
|
-
geode_conversion/bin/geode_conversion_py_model.cp310-win_amd64.pyd,sha256=kClCz4XH60DpHu96GGjNr6PTo5FGCGBbwduSJ2_FHzQ,155648
|
|
9
|
-
geode_conversion/bin/geode_conversion_py_model.pyi,sha256=Cp_p6Bx9DS1q-Ixmv49RCmPilQsCpPAT4de4MC_n820,1894
|
|
10
|
-
geode_conversion-6.5.10rc1.dist-info/METADATA,sha256=0ORbIOZGn8LZD6QWK-I0cfEo0PVEF3Ti6zmbsw5jXV8,1981
|
|
11
|
-
geode_conversion-6.5.10rc1.dist-info/WHEEL,sha256=lVtJYX4SZwMxwg8oP4kB_UdF4VQRXLlqu7hUy_2nnAE,102
|
|
12
|
-
geode_conversion-6.5.10rc1.dist-info/top_level.txt,sha256=PnM_M6Sy8psC1M_rMpCs6FAGjv7uyDWsRvR46jFUpXU,17
|
|
13
|
-
geode_conversion-6.5.10rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|