Geode-Background 9.13.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.
Files changed (29) hide show
  1. geode_background/__init__.py +9 -0
  2. geode_background/__init__.pyi +15 -0
  3. geode_background/bin/Geode-Background_brep.dll +0 -0
  4. geode_background/bin/Geode-Background_common.dll +0 -0
  5. geode_background/bin/Geode-Background_line.dll +0 -0
  6. geode_background/bin/Geode-Background_solid.dll +0 -0
  7. geode_background/bin/Geode-Background_surface.dll +0 -0
  8. geode_background/bin/__init__.pyi +6 -0
  9. geode_background/bin/geode_background_py_brep.cp313-win_amd64.pyd +0 -0
  10. geode_background/bin/geode_background_py_brep.pyi +9 -0
  11. geode_background/bin/geode_background_py_common.cp313-win_amd64.pyd +0 -0
  12. geode_background/bin/geode_background_py_common.pyi +9 -0
  13. geode_background/bin/geode_background_py_solid.cp313-win_amd64.pyd +0 -0
  14. geode_background/bin/geode_background_py_solid.pyi +9 -0
  15. geode_background/bin/geode_background_py_surface.cp313-win_amd64.pyd +0 -0
  16. geode_background/bin/geode_background_py_surface.pyi +9 -0
  17. geode_background/brep_background.py +10 -0
  18. geode_background/brep_background.pyi +5 -0
  19. geode_background/common_background.py +10 -0
  20. geode_background/common_background.pyi +5 -0
  21. geode_background/py.typed +0 -0
  22. geode_background/solid_background.py +10 -0
  23. geode_background/solid_background.pyi +5 -0
  24. geode_background/surface_background.py +10 -0
  25. geode_background/surface_background.pyi +5 -0
  26. geode_background-9.13.0.dist-info/METADATA +13 -0
  27. geode_background-9.13.0.dist-info/RECORD +29 -0
  28. geode_background-9.13.0.dist-info/WHEEL +5 -0
  29. geode_background-9.13.0.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 .brep_background import *
7
+ from .common_background import *
8
+ from .surface_background import *
9
+ from .solid_background import *
@@ -0,0 +1,15 @@
1
+ from __future__ import annotations
2
+ from geode_background.bin.geode_background_py_brep import GeodeBackgroundBRepLibrary
3
+ from geode_background.bin.geode_background_py_common import GeodeBackgroundCommonLibrary
4
+ from geode_background.bin.geode_background_py_solid import GeodeBackgroundSolidLibrary
5
+ from geode_background.bin.geode_background_py_surface import GeodeBackgroundSurfaceLibrary
6
+ import geode_common as geode_common
7
+ import opengeode as opengeode
8
+ import os as os
9
+ import pathlib as pathlib
10
+ from . import bin
11
+ from . import brep_background
12
+ from . import common_background
13
+ from . import solid_background
14
+ from . import surface_background
15
+ __all__: list[str] = ['GeodeBackgroundBRepLibrary', 'GeodeBackgroundCommonLibrary', 'GeodeBackgroundSolidLibrary', 'GeodeBackgroundSurfaceLibrary', 'bin', 'brep_background', 'common_background', 'geode_common', 'opengeode', 'os', 'pathlib', 'solid_background', 'surface_background']
@@ -0,0 +1,6 @@
1
+ from __future__ import annotations
2
+ from . import geode_background_py_brep
3
+ from . import geode_background_py_common
4
+ from . import geode_background_py_solid
5
+ from . import geode_background_py_surface
6
+ __all__: list[str] = ['geode_background_py_brep', 'geode_background_py_common', 'geode_background_py_solid', 'geode_background_py_surface']
@@ -0,0 +1,9 @@
1
+ """
2
+ Geode-Background Python binding for brep
3
+ """
4
+ from __future__ import annotations
5
+ __all__: list[str] = ['GeodeBackgroundBRepLibrary']
6
+ class GeodeBackgroundBRepLibrary:
7
+ @staticmethod
8
+ def initialize() -> None:
9
+ ...
@@ -0,0 +1,9 @@
1
+ """
2
+ Geode-Background Python binding for common
3
+ """
4
+ from __future__ import annotations
5
+ __all__: list[str] = ['GeodeBackgroundCommonLibrary']
6
+ class GeodeBackgroundCommonLibrary:
7
+ @staticmethod
8
+ def initialize() -> None:
9
+ ...
@@ -0,0 +1,9 @@
1
+ """
2
+ Geode-Background Python binding for solid
3
+ """
4
+ from __future__ import annotations
5
+ __all__: list[str] = ['GeodeBackgroundSolidLibrary']
6
+ class GeodeBackgroundSolidLibrary:
7
+ @staticmethod
8
+ def initialize() -> None:
9
+ ...
@@ -0,0 +1,9 @@
1
+ """
2
+ Geode-Background Python binding for surface
3
+ """
4
+ from __future__ import annotations
5
+ __all__: list[str] = ['GeodeBackgroundSurfaceLibrary']
6
+ class GeodeBackgroundSurfaceLibrary:
7
+ @staticmethod
8
+ def initialize() -> None:
9
+ ...
@@ -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_background_py_brep import *
9
+
10
+ GeodeBackgroundBRepLibrary.initialize()
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from geode_background.bin.geode_background_py_brep import GeodeBackgroundBRepLibrary
3
+ import geode_common as geode_common
4
+ import opengeode as opengeode
5
+ __all__: list[str] = ['GeodeBackgroundBRepLibrary', 'geode_common', 'opengeode']
@@ -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_background_py_common import *
9
+
10
+ GeodeBackgroundCommonLibrary.initialize()
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from geode_background.bin.geode_background_py_common import GeodeBackgroundCommonLibrary
3
+ import geode_common as geode_common
4
+ import opengeode as opengeode
5
+ __all__: list[str] = ['GeodeBackgroundCommonLibrary', 'geode_common', 'opengeode']
File without changes
@@ -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_background_py_solid import *
9
+
10
+ GeodeBackgroundSolidLibrary.initialize()
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from geode_background.bin.geode_background_py_solid import GeodeBackgroundSolidLibrary
3
+ import geode_common as geode_common
4
+ import opengeode as opengeode
5
+ __all__: list[str] = ['GeodeBackgroundSolidLibrary', 'geode_common', 'opengeode']
@@ -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_background_py_surface import *
9
+
10
+ GeodeBackgroundSurfaceLibrary.initialize()
@@ -0,0 +1,5 @@
1
+ from __future__ import annotations
2
+ from geode_background.bin.geode_background_py_surface import GeodeBackgroundSurfaceLibrary
3
+ import geode_common as geode_common
4
+ import opengeode as opengeode
5
+ __all__: list[str] = ['GeodeBackgroundSurfaceLibrary', 'geode_common', 'opengeode']
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: Geode-Background
3
+ Version: 9.13.0
4
+ Summary: Geode-solutions OpenGeode module for building background meshes
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">Background<sup><i>by Geode-solutions</i></sup></h1>
13
+ <h3 align="center">Module to generate background meshes and background models for OpenGeode</h3>
@@ -0,0 +1,29 @@
1
+ geode_background/__init__.py,sha256=JJGDZ2JNmp8iBgm_ILhRhd_uVwqHC1vKZHiNLZTcWuM,283
2
+ geode_background/__init__.pyi,sha256=Iv80EiHFUIRryYYjIFTziNZp749Gn8tKdxeXG12PlxM,937
3
+ geode_background/brep_background.py,sha256=dIHk0L4hbw_hEQ_KDE6hurF5BjBAlSGAvatSqXYcQc8,204
4
+ geode_background/brep_background.pyi,sha256=hhVnJJ3wl4262YcHjmvaolkj0btsFBDx5uGo6qFl2hs,272
5
+ geode_background/common_background.py,sha256=VnoVbbkJEodGVB9TmeAKPBzVMF4oDS3dwm35MmsTbHs,208
6
+ geode_background/common_background.pyi,sha256=p-ncc9luUTXOppUOaAO1SlHjdeu9mJH_7EDLE1hdplE,278
7
+ geode_background/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ geode_background/solid_background.py,sha256=rtyicop8WJPkK4hGbdg6htLtcBzVixZ32r4q9gcbCHI,206
9
+ geode_background/solid_background.pyi,sha256=hpElbXotdjUED0gKS79S9ybi89-ZRvGSCmHnUCqkyAQ,275
10
+ geode_background/surface_background.py,sha256=_2VrNN87GfM5PBA4UCFZEKiGHVQePUpf_IemY1DzcH4,210
11
+ geode_background/surface_background.pyi,sha256=6wusUUwy53QcbuwehKBGLYa3-eZa-fuTZtgQtPdv5SE,281
12
+ geode_background/bin/Geode-Background_brep.dll,sha256=RBR8l3uBmil568o3jXNQG6S_nS4RYPtkOFKkHvKK6_w,4694016
13
+ geode_background/bin/Geode-Background_common.dll,sha256=2_jsZwqAkpbszeXSJ2fcMQxzIAe1crMMYp2-YhElnzw,107008
14
+ geode_background/bin/Geode-Background_line.dll,sha256=-fLo_xeEvZQt-7tBNhWyei-7PyvCHa3gkcy1QEBG_nU,4399104
15
+ geode_background/bin/Geode-Background_solid.dll,sha256=KHw0DG8IWhnKnXLqq3XUTMR8IfsC7gnIUI11-Gkmrbo,4922368
16
+ geode_background/bin/Geode-Background_surface.dll,sha256=sNR4ykIZR-KU2y2G07Am1aWV-upR1rneIGf26wehevc,4616192
17
+ geode_background/bin/__init__.pyi,sha256=TT36t01ufzuD9A3S27dtn_HjYoCrNbLxH4moWKk_Qpw,343
18
+ geode_background/bin/geode_background_py_brep.cp313-win_amd64.pyd,sha256=e7mwjAFxTVlxEamUl835vkqhMxl--sHJ7Nr-W6Q-Is0,162304
19
+ geode_background/bin/geode_background_py_brep.pyi,sha256=dXJsTxO108LxnwcWXlqNGE1FIU8XAT6APj26MHYQJQk,239
20
+ geode_background/bin/geode_background_py_common.cp313-win_amd64.pyd,sha256=xivqQpkpWkDFYNq5VWvaq6lVXdJFLf3tWZ6Px3oxICo,162304
21
+ geode_background/bin/geode_background_py_common.pyi,sha256=ni7YMKwwA6MI_LHF1mm_ex0dJyGvbJXpQG8tGTmVJNQ,245
22
+ geode_background/bin/geode_background_py_solid.cp313-win_amd64.pyd,sha256=Y5Br7VTdTepX_3CIfRFzwJfow96lulpAC1R5HkNnfck,162304
23
+ geode_background/bin/geode_background_py_solid.pyi,sha256=aq9i9Oc_ahdMs_1CjfJ3b6WRuUk6v6XxGiZgW7YPu6s,242
24
+ geode_background/bin/geode_background_py_surface.cp313-win_amd64.pyd,sha256=tNybx8fBLpOixgsL__aKYtLRwy3hHtB8Iy-2tXgKUOI,162304
25
+ geode_background/bin/geode_background_py_surface.pyi,sha256=p-fXAlOeiYpAeY89cU-CRbxGCePAVmFBGlvxACUHpLw,248
26
+ geode_background-9.13.0.dist-info/METADATA,sha256=4Jt1rHvWeoc7GRmfcPMBNoh-OxrA_fN2o_I865W5ZZc,556
27
+ geode_background-9.13.0.dist-info/WHEEL,sha256=x5Wpw_tLx5PQKiWdxpqvs0e7Sg-SO0mTWdEADYDGPGA,101
28
+ geode_background-9.13.0.dist-info/top_level.txt,sha256=Zrf1AIA63yPEiQFwdZwLsHzGAE3soNFO7AVs5NdN_r4,17
29
+ geode_background-9.13.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_background