meshlib 3.0.4.121__py38.py39.py310.py311.py312.py313-none-win_amd64.whl → 3.0.5.213__py38.py39.py310.py311.py312.py313-none-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 meshlib might be problematic. Click here for more details.
- meshlib/__init__.py +2 -2
- meshlib/mrcudapy.pyd +0 -0
- meshlib/mrcudapy.pyi +5 -1
- meshlib/mrmeshnumpy.pyd +0 -0
- meshlib/mrmeshpy.pyd +0 -0
- meshlib/mrmeshpy.pyi +3398 -1082
- meshlib/mrviewerpy.pyd +0 -0
- meshlib/pybind11nonlimitedapi_meshlib_3.10.dll +0 -0
- meshlib/pybind11nonlimitedapi_meshlib_3.11.dll +0 -0
- meshlib/pybind11nonlimitedapi_meshlib_3.12.dll +0 -0
- meshlib/pybind11nonlimitedapi_meshlib_3.13.dll +0 -0
- meshlib/pybind11nonlimitedapi_meshlib_3.8.dll +0 -0
- meshlib/pybind11nonlimitedapi_meshlib_3.9.dll +0 -0
- {meshlib-3.0.4.121.dist-info → meshlib-3.0.5.213.dist-info}/DELVEWHEEL +1 -1
- {meshlib-3.0.4.121.dist-info → meshlib-3.0.5.213.dist-info}/METADATA +57 -32
- {meshlib-3.0.4.121.dist-info → meshlib-3.0.5.213.dist-info}/RECORD +31 -31
- {meshlib-3.0.4.121.dist-info → meshlib-3.0.5.213.dist-info}/WHEEL +1 -1
- meshlib.libs/{.load-order-meshlib-3.0.4.121 → .load-order-meshlib-3.0.5.213} +62 -62
- meshlib.libs/{MRCuda-15a7ce13363ad34379c6655a9e6042fd.dll → MRCuda-b99189821a013b36fa7f31b1e4e027be.dll} +0 -0
- meshlib.libs/MRIOExtras-897c1e9954c4f8efb2cb81fadee823c9.dll +0 -0
- meshlib.libs/{MRMesh-7c205442f667b94a460d3fede1873f40.dll → MRMesh-6f708a414b74b6e40fe0b506804358b6.dll} +0 -0
- meshlib.libs/{MRPython-160cce859e3dd600c13789acbf6491f4.dll → MRPython-4e46718ec1e7d07886f9420a1dd7ad90.dll} +0 -0
- meshlib.libs/MRSymbolMesh-f18a9f8a5f081a33a44fe0d272403a40.dll +0 -0
- meshlib.libs/MRViewer-a71f450f333f7a10822df7bc010bcbfe.dll +0 -0
- meshlib.libs/MRVoxels-dee9f41f3abc6b0308f5c7343a5cb426.dll +0 -0
- meshlib.libs/{OpenCTM-d83d7941ecd3330e317dddbfd21559b9.dll → OpenCTM-056abc5b5055169e3cda67d921065e9f.dll} +0 -0
- meshlib.libs/{imgui-0daafad54a31c1aab1da378eab4eecdb.dll → imgui-c9656d03a0ecf60ad305ece0f0123c12.dll} +0 -0
- meshlib.libs/{laz-perf-dbad605cf8e86d348f7cc0a90c2f6dfe.dll → laz-perf-f3b3fab85abce39c5a65fe5f458b25e2.dll} +0 -0
- meshlib.libs/{pybind11nonlimitedapi_stubs-0fad577eb825d00998df4fb4876da3c7.dll → pybind11nonlimitedapi_stubs-ea958b9899a80b738c8469f2dcc75cc9.dll} +0 -0
- meshlib.libs/MRIOExtras-e4cadc4a4026f9e3ad0608ad10895958.dll +0 -0
- meshlib.libs/MRSymbolMesh-11900524380311fa15b74bb3f593720a.dll +0 -0
- meshlib.libs/MRViewer-8cdc95ac6ed65c0257e040124442366f.dll +0 -0
- meshlib.libs/MRVoxels-6ae54269794138199e301e3615afa424.dll +0 -0
- {meshlib-3.0.4.121.dist-info → meshlib-3.0.5.213.dist-info/licenses}/LICENSE +0 -0
- {meshlib-3.0.4.121.dist-info → meshlib-3.0.5.213.dist-info}/top_level.txt +0 -0
meshlib/__init__.py
CHANGED
|
@@ -13,10 +13,10 @@ def _delvewheel_patch_1_10_0():
|
|
|
13
13
|
if os.path.isdir(libs_dir):
|
|
14
14
|
os.add_dll_directory(libs_dir)
|
|
15
15
|
else:
|
|
16
|
-
load_order_filepath = os.path.join(libs_dir, '.load-order-meshlib-3.0.
|
|
16
|
+
load_order_filepath = os.path.join(libs_dir, '.load-order-meshlib-3.0.5.213')
|
|
17
17
|
if os.path.isfile(load_order_filepath):
|
|
18
18
|
import ctypes.wintypes
|
|
19
|
-
with open(os.path.join(libs_dir, '.load-order-meshlib-3.0.
|
|
19
|
+
with open(os.path.join(libs_dir, '.load-order-meshlib-3.0.5.213')) as file:
|
|
20
20
|
load_order = file.read().split()
|
|
21
21
|
kernel32 = ctypes.WinDLL('kernel32', use_last_error=True)
|
|
22
22
|
kernel32.LoadLibraryExW.restype = ctypes.wintypes.HMODULE
|
meshlib/mrcudapy.pyd
CHANGED
|
Binary file
|
meshlib/mrcudapy.pyi
CHANGED
|
@@ -8,8 +8,8 @@ from meshlib.mrmeshpy import std_vector_MeshProjectionResult
|
|
|
8
8
|
from meshlib.mrmeshpy import std_vector_MeshTriPoint
|
|
9
9
|
from meshlib.mrmeshpy import std_vector_PointsProjectionResult
|
|
10
10
|
from meshlib.mrmeshpy import std_vector_SkyPatch
|
|
11
|
-
from meshlib.mrmeshpy import std_vector_Vector3_float as std_vector_Vector3f
|
|
12
11
|
from meshlib.mrmeshpy import std_vector_Vector3_float
|
|
12
|
+
from meshlib.mrmeshpy import std_vector_Vector3_float as std_vector_Vector3f
|
|
13
13
|
from meshlib.mrmeshpy import std_vector_float
|
|
14
14
|
import typing
|
|
15
15
|
__all__ = ['FastWindingNumber', 'PointsProjector', 'PointsToMeshProjector', 'computeDistanceMap', 'computeDistanceMapHeapBytes', 'computeSkyViewFactor', 'distanceMapFromContours', 'distanceMapFromContoursHeapBytes', 'findProjectionOnPoints', 'findProjectionOnPointsHeapBytes', 'findSkyRays', 'func_bool_from_float', 'func_tl_expected_void_std_string_from_VoxelsVolumeMinMax_std_vector_float_int', 'func_tl_expected_void_std_string_from_std_vector_float_Vector3_int_int', 'getCudaAvailableMemory', 'getCudaSafeMemoryLimit', 'int_output', 'isCudaAvailable', 'loadMRCudaDll', 'maxBufferSize', 'maxBufferSizeAlignedByBlock', 'negatePicture', 'pointsToDistanceVolume', 'pointsToDistanceVolumeByParts', 'std_vector_MeshIntersectionResult', 'std_vector_MeshProjectionResult', 'std_vector_MeshTriPoint', 'std_vector_PointsProjectionResult', 'std_vector_SkyPatch', 'std_vector_Vector3_float', 'std_vector_Vector3f', 'std_vector_float']
|
|
@@ -66,6 +66,10 @@ class PointsProjector(meshlib.mrmeshpy.IPointsProjector):
|
|
|
66
66
|
"""
|
|
67
67
|
computes the closest points on point cloud to given points
|
|
68
68
|
"""
|
|
69
|
+
def projectionsHeapBytes(self, numProjections: int) -> int:
|
|
70
|
+
"""
|
|
71
|
+
Returns amount of additional memory needed to compute projections
|
|
72
|
+
"""
|
|
69
73
|
def setPointCloud(self, pointCloud: meshlib.mrmeshpy.PointCloud) -> None:
|
|
70
74
|
"""
|
|
71
75
|
sets the reference point cloud
|
meshlib/mrmeshnumpy.pyd
CHANGED
|
Binary file
|
meshlib/mrmeshpy.pyd
CHANGED
|
Binary file
|