Geode-Conversion 6.6.0__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.
@@ -0,0 +1,6 @@
1
+ ## Copyright (c) 2019 - 2026 Geode-solutions
2
+
3
+ import os, pathlib
4
+ os.add_dll_directory(pathlib.Path(__file__).parent.resolve().joinpath('bin'))
5
+
6
+ from .model_conversion import *
@@ -0,0 +1,18 @@
1
+ from __future__ import annotations
2
+ import geode_common as geode_common
3
+ from geode_conversion.bin.geode_conversion_py_model import GeodeConversionModelLibrary
4
+ from geode_conversion.bin.geode_conversion_py_model import add_brep_sharp_features
5
+ from geode_conversion.bin.geode_conversion_py_model import add_section_sharp_features
6
+ from geode_conversion.bin.geode_conversion_py_model import convert_meshes_into_brep
7
+ from geode_conversion.bin.geode_conversion_py_model import convert_meshes_into_section
8
+ from geode_conversion.bin.geode_conversion_py_model import convert_solid_elements_into_brep
9
+ from geode_conversion.bin.geode_conversion_py_model import convert_surface_elements_into_section
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
13
+ import opengeode as opengeode
14
+ import os as os
15
+ import pathlib as pathlib
16
+ from . import bin
17
+ from . import model_conversion
18
+ __all__: list[str] = ['GeodeConversionModelLibrary', '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']
@@ -0,0 +1,3 @@
1
+ from __future__ import annotations
2
+ from . import geode_conversion_py_model
3
+ __all__: list[str] = ['geode_conversion_py_model']
@@ -0,0 +1,31 @@
1
+ """
2
+ Geode-Conversion Python binding for model
3
+ """
4
+ from __future__ import annotations
5
+ import collections.abc
6
+ import opengeode.bin.opengeode_py_mesh
7
+ import opengeode.bin.opengeode_py_model
8
+ import typing
9
+ __all__: list[str] = ['GeodeConversionModelLibrary', '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']
10
+ class GeodeConversionModelLibrary:
11
+ @staticmethod
12
+ def initialize() -> None:
13
+ ...
14
+ def add_brep_sharp_features(arg0: opengeode.bin.opengeode_py_model.BRep, arg1: typing.SupportsFloat | typing.SupportsIndex) -> opengeode.bin.opengeode_py_model.BRep:
15
+ ...
16
+ def add_section_sharp_features(arg0: opengeode.bin.opengeode_py_model.Section, arg1: typing.SupportsFloat | typing.SupportsIndex) -> opengeode.bin.opengeode_py_model.Section:
17
+ ...
18
+ def convert_meshes_into_brep(arg0: collections.abc.Sequence[opengeode.bin.opengeode_py_mesh.PointSet3D], arg1: collections.abc.Sequence[opengeode.bin.opengeode_py_mesh.EdgedCurve3D], arg2: collections.abc.Sequence[opengeode.bin.opengeode_py_mesh.SurfaceMesh3D]) -> opengeode.bin.opengeode_py_model.BRep:
19
+ ...
20
+ def convert_meshes_into_section(arg0: collections.abc.Sequence[opengeode.bin.opengeode_py_mesh.PointSet2D], arg1: collections.abc.Sequence[opengeode.bin.opengeode_py_mesh.EdgedCurve2D], arg2: collections.abc.Sequence[opengeode.bin.opengeode_py_mesh.SurfaceMesh2D]) -> opengeode.bin.opengeode_py_model.Section:
21
+ ...
22
+ def convert_solid_elements_into_brep(arg0: opengeode.bin.opengeode_py_mesh.SolidMesh3D, arg1: collections.abc.Sequence[typing.SupportsInt | typing.SupportsIndex], arg2: collections.abc.Sequence[typing.SupportsInt | typing.SupportsIndex], arg3: collections.abc.Sequence[typing.SupportsInt | typing.SupportsIndex]) -> opengeode.bin.opengeode_py_model.BRep:
23
+ ...
24
+ def convert_surface_elements_into_section(arg0: opengeode.bin.opengeode_py_mesh.SurfaceMesh2D, arg1: collections.abc.Sequence[typing.SupportsInt | typing.SupportsIndex], arg2: collections.abc.Sequence[typing.SupportsInt | typing.SupportsIndex]) -> opengeode.bin.opengeode_py_model.Section:
25
+ ...
26
+ def convert_surface_into_section_from_attribute(arg0: opengeode.bin.opengeode_py_mesh.SurfaceMesh2D, arg1: str) -> opengeode.bin.opengeode_py_model.Section:
27
+ ...
28
+ def curve_from_surface_borders2d(arg0: opengeode.bin.opengeode_py_mesh.SurfaceMesh2D) -> opengeode.bin.opengeode_py_mesh.EdgedCurve2D:
29
+ ...
30
+ def curve_from_surface_borders3d(arg0: opengeode.bin.opengeode_py_mesh.SurfaceMesh3D) -> opengeode.bin.opengeode_py_mesh.EdgedCurve3D:
31
+ ...
@@ -0,0 +1,10 @@
1
+ #
2
+ # Copyright (c) 2019 - 2026 Geode-solutions. All rights reserved.
3
+ #
4
+
5
+ import opengeode
6
+ import geode_common
7
+
8
+ from .bin.geode_conversion_py_model import *
9
+
10
+ GeodeConversionModelLibrary.initialize()
@@ -0,0 +1,14 @@
1
+ from __future__ import annotations
2
+ import geode_common as geode_common
3
+ from geode_conversion.bin.geode_conversion_py_model import GeodeConversionModelLibrary
4
+ from geode_conversion.bin.geode_conversion_py_model import add_brep_sharp_features
5
+ from geode_conversion.bin.geode_conversion_py_model import add_section_sharp_features
6
+ from geode_conversion.bin.geode_conversion_py_model import convert_meshes_into_brep
7
+ from geode_conversion.bin.geode_conversion_py_model import convert_meshes_into_section
8
+ from geode_conversion.bin.geode_conversion_py_model import convert_solid_elements_into_brep
9
+ from geode_conversion.bin.geode_conversion_py_model import convert_surface_elements_into_section
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
13
+ import opengeode as opengeode
14
+ __all__: list[str] = ['GeodeConversionModelLibrary', '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']
File without changes
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: Geode-Conversion
3
+ Version: 6.6.0
4
+ Summary: Conversion module for Geode-solutions OpenGeode modules
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-common==33.*,>=33.23.0
10
+ Requires-Dist: opengeode-core==17.*,>=17.3.0
11
+
12
+ <h1 align="center">Geode-Conversion<sup><i>by Geode-solutions</i></sup></h1>
13
+ <h3 align="center">Conversion OpenGeode module</h3>
14
+
15
+ <p align="center">
16
+ <img src="https://github.com/Geode-solutions/Geode-Conversion_private/workflows/CI/badge.svg" alt="Build Status">
17
+ <img src="https://github.com/Geode-solutions/Geode-Conversion_private/workflows/CD/badge.svg" alt="Deploy Status">
18
+ <img src="https://codecov.io/gh/Geode-solutions/Geode-Conversion_private/branch/master/graph/badge.svg" alt="Coverage Status">
19
+ <img src="https://img.shields.io/github/release/Geode-solutions/Geode-Conversion_private.svg" alt="Version">
20
+ </p>
21
+
22
+ <p align="center">
23
+ <img src="https://img.shields.io/static/v1?label=Windows&logo=windows&logoColor=white&message=support&color=success" alt="Windows support">
24
+ <img src="https://img.shields.io/static/v1?label=Ubuntu&logo=Ubuntu&logoColor=white&message=support&color=success" alt="Ubuntu support">
25
+ <img src="https://img.shields.io/static/v1?label=Red%20Hat&logo=Red-Hat&logoColor=white&message=support&color=success" alt="Red Hat support">
26
+ </p>
27
+
28
+ <p align="center">
29
+ <img src="https://img.shields.io/badge/C%2B%2B-11-blue.svg" alt="Language">
30
+ <img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="Semantic-release">
31
+ <a href="https://geode-solutions.com/#slack">
32
+ <img src="https://opengeode-slack-invite.herokuapp.com/badge.svg" alt="Slack invite">
33
+ </a>
34
+
35
+ Copyright (c) 2019 - 2026, Geode-solutions
@@ -0,0 +1,13 @@
1
+ geode_conversion/__init__.py,sha256=_AY3uJTxU44c2z-sOZaCLLTm9DqMV_EqptalFar2ses,182
2
+ geode_conversion/__init__.pyi,sha256=SfMicc6Hy3iXwTA5_cul6eqsMk23lhDFrWk03DlYH6M,1535
3
+ geode_conversion/model_conversion.py,sha256=85WvYZNPLjpNOsAAX1ce1wCssxWLmETADj5k4H78a5A,206
4
+ geode_conversion/model_conversion.pyi,sha256=YFkKT_yHHupNMdPRIRlpacRiWwoNf27OEcaLkyJg2Jc,1396
5
+ geode_conversion/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ geode_conversion/bin/Geode-Conversion_model.dll,sha256=kFoffP4sDPWP2-4RBP4wTHZGR-3h1cLIZ2BvM1CsK4Q,5275136
7
+ geode_conversion/bin/__init__.pyi,sha256=yh7ncHmmeSlGtA3CfBWDiymDUfJHNjUXiSJyAJVlKHw,129
8
+ geode_conversion/bin/geode_conversion_py_model.cp313-win_amd64.pyd,sha256=86apo8yZ3XWau8MTyNGGoIevlIzgyfLcxN0TGn9a56o,201216
9
+ geode_conversion/bin/geode_conversion_py_model.pyi,sha256=bSqBPQHJILgIvOSR8QhDJ6m_EXKA2UEKgCrx8q2dcow,2783
10
+ geode_conversion-6.6.0.dist-info/METADATA,sha256=tJj4WOpyNKoeNOLoOYOKOqtYuTMnJq1BoIEVKU9YCSs,1891
11
+ geode_conversion-6.6.0.dist-info/WHEEL,sha256=x5Wpw_tLx5PQKiWdxpqvs0e7Sg-SO0mTWdEADYDGPGA,101
12
+ geode_conversion-6.6.0.dist-info/top_level.txt,sha256=PnM_M6Sy8psC1M_rMpCs6FAGjv7uyDWsRvR46jFUpXU,17
13
+ geode_conversion-6.6.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win_amd64
5
+
@@ -0,0 +1 @@
1
+ geode_conversion