Geode-Explicit 7.3.0rc1__cp314-cp314-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_explicit/__init__.py +9 -0
- geode_explicit/__init__.pyi +27 -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/Geode-Explicit_workflows.dll +0 -0
- geode_explicit/bin/__init__.pyi +6 -0
- geode_explicit/bin/geode_explicit_py_brep.cp314-win_amd64.pyd +0 -0
- geode_explicit/bin/geode_explicit_py_brep.pyi +84 -0
- geode_explicit/bin/geode_explicit_py_common.cp314-win_amd64.pyd +0 -0
- geode_explicit/bin/geode_explicit_py_common.pyi +26 -0
- geode_explicit/bin/geode_explicit_py_section.cp314-win_amd64.pyd +0 -0
- geode_explicit/bin/geode_explicit_py_section.pyi +20 -0
- geode_explicit/bin/geode_explicit_py_workflows.cp314-win_amd64.pyd +0 -0
- geode_explicit/bin/geode_explicit_py_workflows.pyi +14 -0
- geode_explicit/brep_explicit.py +13 -0
- geode_explicit/brep_explicit.pyi +13 -0
- geode_explicit/common_explicit.py +12 -0
- geode_explicit/common_explicit.pyi +9 -0
- geode_explicit/py.typed +0 -0
- geode_explicit/section_explicit.py +12 -0
- geode_explicit/section_explicit.pyi +8 -0
- geode_explicit/workflows_explicit.py +12 -0
- geode_explicit/workflows_explicit.pyi +8 -0
- geode_explicit-7.3.0rc1.dist-info/METADATA +38 -0
- geode_explicit-7.3.0rc1.dist-info/RECORD +28 -0
- geode_explicit-7.3.0rc1.dist-info/WHEEL +5 -0
- geode_explicit-7.3.0rc1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,9 @@
|
|
|
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 .common_explicit import *
|
|
7
|
+
from .section_explicit import *
|
|
8
|
+
from .brep_explicit import *
|
|
9
|
+
from .workflows_explicit import *
|
|
@@ -0,0 +1,27 @@
|
|
|
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 BRepExplicitModelerErrorHandlingMode
|
|
7
|
+
from geode_explicit.bin.geode_explicit_py_brep import BRepExplicitModelerFailedElements
|
|
8
|
+
from geode_explicit.bin.geode_explicit_py_brep import BRepExplicitModelerParameters
|
|
9
|
+
from geode_explicit.bin.geode_explicit_py_brep import BRepVolumicInserter
|
|
10
|
+
from geode_explicit.bin.geode_explicit_py_brep import GeodeExplicitBRepLibrary
|
|
11
|
+
from geode_explicit.bin.geode_explicit_py_common import GeodeExplicitCommonLibrary
|
|
12
|
+
from geode_explicit.bin.geode_explicit_py_common import MeshElements
|
|
13
|
+
from geode_explicit.bin.geode_explicit_py_common import TypedMeshElements
|
|
14
|
+
from geode_explicit.bin.geode_explicit_py_section import GeodeExplicitSectionLibrary
|
|
15
|
+
from geode_explicit.bin.geode_explicit_py_section import SectionExplicitModeler
|
|
16
|
+
from geode_explicit.bin.geode_explicit_py_workflows import GeodeExplicitWorkflowsLibrary
|
|
17
|
+
from geode_explicit.bin.geode_explicit_py_workflows import build_brep_from_topography_and_curve
|
|
18
|
+
import opengeode as opengeode
|
|
19
|
+
import opengeode_inspector as opengeode_inspector
|
|
20
|
+
import os as os
|
|
21
|
+
import pathlib as pathlib
|
|
22
|
+
from . import bin
|
|
23
|
+
from . import brep_explicit
|
|
24
|
+
from . import common_explicit
|
|
25
|
+
from . import section_explicit
|
|
26
|
+
from . import workflows_explicit
|
|
27
|
+
__all__: list[str] = ['BRepExplicitModeler', 'BRepExplicitModelerErrorHandlingMode', 'BRepExplicitModelerFailedElements', 'BRepExplicitModelerParameters', 'BRepVolumicInserter', 'GeodeExplicitBRepLibrary', 'GeodeExplicitCommonLibrary', 'GeodeExplicitSectionLibrary', 'GeodeExplicitWorkflowsLibrary', 'MeshElements', 'SectionExplicitModeler', 'TypedMeshElements', 'bin', 'brep_explicit', 'build_brep_from_topography_and_curve', 'common_explicit', 'geode_background', 'geode_common', 'geode_conversion', 'opengeode', 'opengeode_inspector', 'os', 'pathlib', 'section_explicit', 'workflows_explicit']
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from . import geode_explicit_py_brep
|
|
3
|
+
from . import geode_explicit_py_common
|
|
4
|
+
from . import geode_explicit_py_section
|
|
5
|
+
from . import geode_explicit_py_workflows
|
|
6
|
+
__all__: list[str] = ['geode_explicit_py_brep', 'geode_explicit_py_common', 'geode_explicit_py_section', 'geode_explicit_py_workflows']
|
|
Binary file
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Geode-Explicit Python binding for BRep
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
import collections.abc
|
|
6
|
+
import geode_explicit.bin.geode_explicit_py_common
|
|
7
|
+
import opengeode.bin.opengeode_py_mesh
|
|
8
|
+
import opengeode.bin.opengeode_py_model
|
|
9
|
+
import typing
|
|
10
|
+
__all__: list[str] = ['BRepExplicitModeler', 'BRepExplicitModelerErrorHandlingMode', 'BRepExplicitModelerFailedElements', 'BRepExplicitModelerParameters', 'BRepVolumicInserter', 'GeodeExplicitBRepLibrary']
|
|
11
|
+
class BRepExplicitModeler:
|
|
12
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_model.BRep, arg1: BRepExplicitModelerParameters) -> None:
|
|
13
|
+
...
|
|
14
|
+
def add_curve(self, arg0: opengeode.bin.opengeode_py_mesh.EdgedCurve3D) -> None:
|
|
15
|
+
...
|
|
16
|
+
def add_point_set(self, arg0: opengeode.bin.opengeode_py_mesh.PointSet3D) -> None:
|
|
17
|
+
...
|
|
18
|
+
def add_triangulated_surface(self, arg0: opengeode.bin.opengeode_py_mesh.TriangulatedSurface3D) -> None:
|
|
19
|
+
...
|
|
20
|
+
def process(self) -> BRepExplicitModelerFailedElements:
|
|
21
|
+
...
|
|
22
|
+
class BRepExplicitModelerErrorHandlingMode:
|
|
23
|
+
"""
|
|
24
|
+
Members:
|
|
25
|
+
|
|
26
|
+
strict
|
|
27
|
+
|
|
28
|
+
best_effort
|
|
29
|
+
|
|
30
|
+
best_effort_with_deletion
|
|
31
|
+
"""
|
|
32
|
+
__members__: typing.ClassVar[dict[str, BRepExplicitModelerErrorHandlingMode]] # value = {'strict': <BRepExplicitModelerErrorHandlingMode.strict: 0>, 'best_effort': <BRepExplicitModelerErrorHandlingMode.best_effort: 1>, 'best_effort_with_deletion': <BRepExplicitModelerErrorHandlingMode.best_effort_with_deletion: 2>}
|
|
33
|
+
best_effort: typing.ClassVar[BRepExplicitModelerErrorHandlingMode] # value = <BRepExplicitModelerErrorHandlingMode.best_effort: 1>
|
|
34
|
+
best_effort_with_deletion: typing.ClassVar[BRepExplicitModelerErrorHandlingMode] # value = <BRepExplicitModelerErrorHandlingMode.best_effort_with_deletion: 2>
|
|
35
|
+
strict: typing.ClassVar[BRepExplicitModelerErrorHandlingMode] # value = <BRepExplicitModelerErrorHandlingMode.strict: 0>
|
|
36
|
+
def __eq__(self, other: typing.Any) -> bool:
|
|
37
|
+
...
|
|
38
|
+
def __getstate__(self) -> int:
|
|
39
|
+
...
|
|
40
|
+
def __hash__(self) -> int:
|
|
41
|
+
...
|
|
42
|
+
def __index__(self) -> int:
|
|
43
|
+
...
|
|
44
|
+
def __init__(self, value: typing.SupportsInt | typing.SupportsIndex) -> None:
|
|
45
|
+
...
|
|
46
|
+
def __int__(self) -> int:
|
|
47
|
+
...
|
|
48
|
+
def __ne__(self, other: typing.Any) -> bool:
|
|
49
|
+
...
|
|
50
|
+
def __repr__(self) -> str:
|
|
51
|
+
...
|
|
52
|
+
def __setstate__(self, state: typing.SupportsInt | typing.SupportsIndex) -> None:
|
|
53
|
+
...
|
|
54
|
+
def __str__(self) -> str:
|
|
55
|
+
...
|
|
56
|
+
@property
|
|
57
|
+
def name(self) -> str:
|
|
58
|
+
...
|
|
59
|
+
@property
|
|
60
|
+
def value(self) -> int:
|
|
61
|
+
...
|
|
62
|
+
class BRepExplicitModelerFailedElements:
|
|
63
|
+
input_failing_elements: geode_explicit.bin.geode_explicit_py_common.MeshElements
|
|
64
|
+
output_failing_elements: geode_explicit.bin.geode_explicit_py_common.MeshElements
|
|
65
|
+
def __init__(self) -> None:
|
|
66
|
+
...
|
|
67
|
+
class BRepExplicitModelerParameters:
|
|
68
|
+
build_mode: BRepExplicitModelerErrorHandlingMode
|
|
69
|
+
connectivity_parallelization: bool
|
|
70
|
+
geometrical_parallelization: bool
|
|
71
|
+
remove_outside_block_elements: bool
|
|
72
|
+
def __init__(self) -> None:
|
|
73
|
+
...
|
|
74
|
+
class BRepVolumicInserter:
|
|
75
|
+
def __init__(self, arg0: opengeode.bin.opengeode_py_model.BRep) -> None:
|
|
76
|
+
...
|
|
77
|
+
def add_scalar_isovalues(self, arg0: str, arg1: collections.abc.Sequence[typing.SupportsFloat | typing.SupportsIndex]) -> None:
|
|
78
|
+
...
|
|
79
|
+
def build(self) -> None:
|
|
80
|
+
...
|
|
81
|
+
class GeodeExplicitBRepLibrary:
|
|
82
|
+
@staticmethod
|
|
83
|
+
def initialize() -> None:
|
|
84
|
+
...
|
|
Binary file
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Geode-Explicit Python binding for Common
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
import opengeode.bin.opengeode_py_basic
|
|
6
|
+
import typing
|
|
7
|
+
__all__: list[str] = ['GeodeExplicitCommonLibrary', 'MeshElements', 'TypedMeshElements']
|
|
8
|
+
class GeodeExplicitCommonLibrary:
|
|
9
|
+
@staticmethod
|
|
10
|
+
def initialize() -> None:
|
|
11
|
+
...
|
|
12
|
+
class MeshElements:
|
|
13
|
+
def __init__(self) -> None:
|
|
14
|
+
...
|
|
15
|
+
def contains_edge(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: typing.SupportsInt | typing.SupportsIndex) -> bool:
|
|
16
|
+
...
|
|
17
|
+
def contains_point(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: typing.SupportsInt | typing.SupportsIndex) -> bool:
|
|
18
|
+
...
|
|
19
|
+
def contains_polygon(self, arg0: opengeode.bin.opengeode_py_basic.uuid, arg1: typing.SupportsInt | typing.SupportsIndex) -> bool:
|
|
20
|
+
...
|
|
21
|
+
def empty(self) -> bool:
|
|
22
|
+
...
|
|
23
|
+
def size(self) -> int:
|
|
24
|
+
...
|
|
25
|
+
class TypedMeshElements:
|
|
26
|
+
pass
|
|
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] = ['GeodeExplicitSectionLibrary', 'SectionExplicitModeler']
|
|
8
|
+
class GeodeExplicitSectionLibrary:
|
|
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
|
+
...
|
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Geode-Explicit Python binding for Workflows
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
import opengeode.bin.opengeode_py_mesh
|
|
6
|
+
import opengeode.bin.opengeode_py_model
|
|
7
|
+
import typing
|
|
8
|
+
__all__: list[str] = ['GeodeExplicitWorkflowsLibrary', 'build_brep_from_topography_and_curve']
|
|
9
|
+
class GeodeExplicitWorkflowsLibrary:
|
|
10
|
+
@staticmethod
|
|
11
|
+
def initialize() -> None:
|
|
12
|
+
...
|
|
13
|
+
def build_brep_from_topography_and_curve(arg0: opengeode.bin.opengeode_py_mesh.TriangulatedSurface3D, arg1: opengeode.bin.opengeode_py_mesh.EdgedCurve2D, arg2: typing.SupportsFloat | typing.SupportsIndex) -> opengeode.bin.opengeode_py_model.BRep:
|
|
14
|
+
...
|
|
@@ -0,0 +1,13 @@
|
|
|
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_conversion
|
|
9
|
+
import geode_background
|
|
10
|
+
|
|
11
|
+
from .bin.geode_explicit_py_brep import *
|
|
12
|
+
|
|
13
|
+
GeodeExplicitBRepLibrary.initialize()
|
|
@@ -0,0 +1,13 @@
|
|
|
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 BRepExplicitModelerErrorHandlingMode
|
|
7
|
+
from geode_explicit.bin.geode_explicit_py_brep import BRepExplicitModelerFailedElements
|
|
8
|
+
from geode_explicit.bin.geode_explicit_py_brep import BRepExplicitModelerParameters
|
|
9
|
+
from geode_explicit.bin.geode_explicit_py_brep import BRepVolumicInserter
|
|
10
|
+
from geode_explicit.bin.geode_explicit_py_brep import GeodeExplicitBRepLibrary
|
|
11
|
+
import opengeode as opengeode
|
|
12
|
+
import opengeode_inspector as opengeode_inspector
|
|
13
|
+
__all__: list[str] = ['BRepExplicitModeler', 'BRepExplicitModelerErrorHandlingMode', 'BRepExplicitModelerFailedElements', 'BRepExplicitModelerParameters', 'BRepVolumicInserter', 'GeodeExplicitBRepLibrary', 'geode_background', 'geode_common', 'geode_conversion', 'opengeode', 'opengeode_inspector']
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright (c) 2019 - 2026 Geode-solutions. All rights reserved.
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
import opengeode
|
|
6
|
+
import geode_common
|
|
7
|
+
import geode_conversion
|
|
8
|
+
import geode_background
|
|
9
|
+
|
|
10
|
+
from .bin.geode_explicit_py_common import *
|
|
11
|
+
|
|
12
|
+
GeodeExplicitCommonLibrary.initialize()
|
|
@@ -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_conversion as geode_conversion
|
|
5
|
+
from geode_explicit.bin.geode_explicit_py_common import GeodeExplicitCommonLibrary
|
|
6
|
+
from geode_explicit.bin.geode_explicit_py_common import MeshElements
|
|
7
|
+
from geode_explicit.bin.geode_explicit_py_common import TypedMeshElements
|
|
8
|
+
import opengeode as opengeode
|
|
9
|
+
__all__: list[str] = ['GeodeExplicitCommonLibrary', 'MeshElements', 'TypedMeshElements', 'geode_background', 'geode_common', 'geode_conversion', 'opengeode']
|
geode_explicit/py.typed
ADDED
|
File without changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright (c) 2019 - 2026 Geode-solutions. All rights reserved.
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
import opengeode
|
|
6
|
+
import geode_common
|
|
7
|
+
import geode_conversion
|
|
8
|
+
import geode_background
|
|
9
|
+
|
|
10
|
+
from .bin.geode_explicit_py_section import *
|
|
11
|
+
|
|
12
|
+
GeodeExplicitSectionLibrary.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
|
+
import geode_conversion as geode_conversion
|
|
5
|
+
from geode_explicit.bin.geode_explicit_py_section import GeodeExplicitSectionLibrary
|
|
6
|
+
from geode_explicit.bin.geode_explicit_py_section import SectionExplicitModeler
|
|
7
|
+
import opengeode as opengeode
|
|
8
|
+
__all__: list[str] = ['GeodeExplicitSectionLibrary', 'SectionExplicitModeler', 'geode_background', 'geode_common', 'geode_conversion', 'opengeode']
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright (c) 2019 - 2026 Geode-solutions. All rights reserved.
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
import opengeode
|
|
6
|
+
import geode_common
|
|
7
|
+
import geode_conversion
|
|
8
|
+
import geode_background
|
|
9
|
+
|
|
10
|
+
from .bin.geode_explicit_py_workflows import *
|
|
11
|
+
|
|
12
|
+
GeodeExplicitWorkflowsLibrary.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
|
+
import geode_conversion as geode_conversion
|
|
5
|
+
from geode_explicit.bin.geode_explicit_py_workflows import GeodeExplicitWorkflowsLibrary
|
|
6
|
+
from geode_explicit.bin.geode_explicit_py_workflows import build_brep_from_topography_and_curve
|
|
7
|
+
import opengeode as opengeode
|
|
8
|
+
__all__: list[str] = ['GeodeExplicitWorkflowsLibrary', 'build_brep_from_topography_and_curve', 'geode_background', 'geode_common', 'geode_conversion', 'opengeode']
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Geode-Explicit
|
|
3
|
+
Version: 7.3.0rc1
|
|
4
|
+
Summary: Geode-solutions OpenGeode module for building explicit models
|
|
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: geode-conversion==6.*,>=6.6.0rc1
|
|
12
|
+
Requires-Dist: opengeode-core==17.*,>=17.3.0rc1
|
|
13
|
+
Requires-Dist: opengeode-inspector==6.*,>=6.11.0rc1
|
|
14
|
+
|
|
15
|
+
<h1 align="center">Geode-Explicit<sup><i>by Geode-solutions</i></sup></h1>
|
|
16
|
+
<h3 align="center">Geode-solutions OpenGeode module for building explicit models</h3>
|
|
17
|
+
|
|
18
|
+
<p align="center">
|
|
19
|
+
<img src="https://github.com/Geode-solutions/Geode-Explicit_private/workflows/CI/badge.svg" alt="Build Status">
|
|
20
|
+
<img src="https://github.com/Geode-solutions/Geode-Explicit_private/workflows/CD/badge.svg" alt="Deploy Status">
|
|
21
|
+
<img src="https://codecov.io/gh/Geode-solutions/Geode-Explicit_private/branch/master/graph/badge.svg" alt="Coverage Status">
|
|
22
|
+
<img src="https://img.shields.io/github/release/Geode-solutions/Geode-Explicit_private.svg" alt="Version">
|
|
23
|
+
</p>
|
|
24
|
+
|
|
25
|
+
<p align="center">
|
|
26
|
+
<img src="https://img.shields.io/static/v1?label=Windows&logo=windows&logoColor=white&message=support&color=success" alt="Windows support">
|
|
27
|
+
<img src="https://img.shields.io/static/v1?label=Ubuntu&logo=Ubuntu&logoColor=white&message=support&color=success" alt="Ubuntu support">
|
|
28
|
+
<img src="https://img.shields.io/static/v1?label=Red%20Hat&logo=Red-Hat&logoColor=white&message=support&color=success" alt="Red Hat support">
|
|
29
|
+
</p>
|
|
30
|
+
|
|
31
|
+
<p align="center">
|
|
32
|
+
<img src="https://img.shields.io/badge/C%2B%2B-11-blue.svg" alt="Language">
|
|
33
|
+
<img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="Semantic-release">
|
|
34
|
+
<a href="https://geode-solutions.com/#slack">
|
|
35
|
+
<img src="https://opengeode-slack-invite.herokuapp.com/badge.svg" alt="Slack invite">
|
|
36
|
+
</a>
|
|
37
|
+
|
|
38
|
+
Copyright (c) 2019 - 2026, Geode-solutions
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
geode_explicit/__init__.py,sha256=oqv17LuvoaAITP6PxbWphi-PILLwrHW5nynWzckFDlg,279
|
|
2
|
+
geode_explicit/__init__.pyi,sha256=7caGCIjjWIZyX_BUny2ct44p9RgI-BfedOB0c8OtjLA,2111
|
|
3
|
+
geode_explicit/brep_explicit.py,sha256=dGFcxbTOGdK1_qBMzbbouXJICPVQ8HpSxIshkJZG65s,278
|
|
4
|
+
geode_explicit/brep_explicit.pyi,sha256=3VEChE2naUV6ZHcovxxBcBLfhyRElX-sqLRkBAwSGPw,1040
|
|
5
|
+
geode_explicit/common_explicit.py,sha256=Tt5e07sbqcQnKU1pmRwGGlHxmzMrolt33I_wflk78sU,254
|
|
6
|
+
geode_explicit/common_explicit.pyi,sha256=CEL6lzawrdctpeOifPaFX6TKkHgR3RC8pb1nh-3oWyY,582
|
|
7
|
+
geode_explicit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
geode_explicit/section_explicit.py,sha256=6_hFFcuUyo9loG0AvUx1NRJM-sZnwBd842_2cj0Ngfs,256
|
|
9
|
+
geode_explicit/section_explicit.pyi,sha256=uukpqNl-2QemX59lGrYczb3S8dhml8VM2rIbJKHNmaw,510
|
|
10
|
+
geode_explicit/workflows_explicit.py,sha256=xkA1z1n_3x2DSa-2WBwCKgvs2IK0vpucIQOTVjJac9A,260
|
|
11
|
+
geode_explicit/workflows_explicit.pyi,sha256=M3gU_PQ6Hz1y1I8-jwWZbbz7_PdzVmAGWFhLsOmGXCs,546
|
|
12
|
+
geode_explicit/bin/Geode-Explicit_brep.dll,sha256=8VP-qbEpH7KFQVg0gxgkiNtFCemWqxbt77cHKUpPqeg,4864512
|
|
13
|
+
geode_explicit/bin/Geode-Explicit_common.dll,sha256=fYA2bMyVXTKR-2r7F6SOEMmIi1_8SHBrw7b0LApdI5M,133632
|
|
14
|
+
geode_explicit/bin/Geode-Explicit_section.dll,sha256=I2fBPk7M9ZTntgPi3tmam9kV7fPmkeEchpR7JuWcmLc,4397568
|
|
15
|
+
geode_explicit/bin/Geode-Explicit_workflows.dll,sha256=CHouVOgcFSxFJVF_E-BVTure3H1KkK7OkRBS4OvtGBg,4443136
|
|
16
|
+
geode_explicit/bin/__init__.pyi,sha256=9rq4Qs9z-43GyIaEIaME-hRpr6PEopuATihYf14UgJA,335
|
|
17
|
+
geode_explicit/bin/geode_explicit_py_brep.cp314-win_amd64.pyd,sha256=ua_RWwU3uLrD5uKjPrSEh9v9WiyMUCRpiLy7LEtckfo,250880
|
|
18
|
+
geode_explicit/bin/geode_explicit_py_brep.pyi,sha256=sEgpV9u2AUHDE4V8eLH3R9D9gaKbFNUUaJ7vFgEMnts,3562
|
|
19
|
+
geode_explicit/bin/geode_explicit_py_common.cp314-win_amd64.pyd,sha256=X_w7pBrbcXgOveGdcCElih7ZsW0dTQpt4QpnkGj_5fo,174592
|
|
20
|
+
geode_explicit/bin/geode_explicit_py_common.pyi,sha256=8fbkeST-lLA2l8tBS54uSmpIvvOcKiS61cpTR8IT8v0,958
|
|
21
|
+
geode_explicit/bin/geode_explicit_py_section.cp314-win_amd64.pyd,sha256=EzTMcWsXkxUa3UW1Bono4h2F07ag0jzAzDIVhvUsAFA,173568
|
|
22
|
+
geode_explicit/bin/geode_explicit_py_section.pyi,sha256=_Xe92P1RM17fKVn9P2ez5RHKT0gflCEBQ33G38mIDsY,701
|
|
23
|
+
geode_explicit/bin/geode_explicit_py_workflows.cp314-win_amd64.pyd,sha256=9tLaJEfi1iXcU6iTVSYSVlIG0mroXieycMpu50OokEc,167936
|
|
24
|
+
geode_explicit/bin/geode_explicit_py_workflows.pyi,sha256=JCBKX03nZWGYO7bE8bFuRKezHQInuTjtantNehJ4Dtk,641
|
|
25
|
+
geode_explicit-7.3.0rc1.dist-info/METADATA,sha256=mJkCcDk7BL8Ya0O2_DjANHt7KtKJis3jkLXhW2em6po,2080
|
|
26
|
+
geode_explicit-7.3.0rc1.dist-info/WHEEL,sha256=jhxrRP3tdEfm7toB1X7dl5x6f0bu6Tve2cWwIdkbL8U,101
|
|
27
|
+
geode_explicit-7.3.0rc1.dist-info/top_level.txt,sha256=SLuJS840PQSB1EAIYibu72OEG1sORAkOdcw3z29RuQQ,15
|
|
28
|
+
geode_explicit-7.3.0rc1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
geode_explicit
|