meshlib 3.0.8.228__py38.py39.py310.py311.py312.py313-none-win_amd64.whl → 3.0.8.247__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.

Files changed (31) hide show
  1. meshlib/__init__.py +5 -5
  2. meshlib/mrcudapy.pyd +0 -0
  3. meshlib/mrmeshnumpy.pyd +0 -0
  4. meshlib/mrmeshpy.pyd +0 -0
  5. meshlib/mrmeshpy.pyi +131 -28
  6. meshlib/mrviewerpy.pyd +0 -0
  7. meshlib/pybind11nonlimitedapi_meshlib_3.10.dll +0 -0
  8. meshlib/pybind11nonlimitedapi_meshlib_3.11.dll +0 -0
  9. meshlib/pybind11nonlimitedapi_meshlib_3.12.dll +0 -0
  10. meshlib/pybind11nonlimitedapi_meshlib_3.13.dll +0 -0
  11. meshlib/pybind11nonlimitedapi_meshlib_3.8.dll +0 -0
  12. meshlib/pybind11nonlimitedapi_meshlib_3.9.dll +0 -0
  13. {meshlib-3.0.8.228.dist-info → meshlib-3.0.8.247.dist-info}/DELVEWHEEL +2 -2
  14. {meshlib-3.0.8.228.dist-info → meshlib-3.0.8.247.dist-info}/METADATA +1 -1
  15. {meshlib-3.0.8.228.dist-info → meshlib-3.0.8.247.dist-info}/RECORD +30 -30
  16. meshlib.libs/{.load-order-meshlib-3.0.8.228 → .load-order-meshlib-3.0.8.247} +65 -65
  17. meshlib.libs/{MRCuda-aca8d72d2848bd945058c2ba74bbc482.dll → MRCuda-312a585a38ade0d00a0bd9b9c8c7bc27.dll} +0 -0
  18. meshlib.libs/MRIOExtras-29f9758de0d671335f848a847f10f814.dll +0 -0
  19. meshlib.libs/{MRMesh-0b2dfce768e5b2e9d6846e343dd6c94f.dll → MRMesh-cc2ea11ed826a8c81f05dcce4323d427.dll} +0 -0
  20. meshlib.libs/{MRPython-34fac47452f13486bbe8c941f1f7c0ce.dll → MRPython-4e470886bc1cabdaedcc474171ea8710.dll} +0 -0
  21. meshlib.libs/{MRSymbolMesh-25e810659cf58c55f29cdb59603011ab.dll → MRSymbolMesh-0105b4efdc337bd621667fee88ba4ee1.dll} +0 -0
  22. meshlib.libs/{MRViewer-cb480721e62a8ba2f15fe913e3b66f6d.dll → MRViewer-5026276932d810fe199475a7ebecc9db.dll} +0 -0
  23. meshlib.libs/{MRVoxels-bc7722eb34f15e2c4cb74e791f046424.dll → MRVoxels-0e44f77e139bd0ed82e493ae28efff81.dll} +0 -0
  24. meshlib.libs/{OpenCTM-c72e76af2825a59033aaaaafbb6d354b.dll → OpenCTM-93256fdbabdf77193a867897525e57cc.dll} +0 -0
  25. meshlib.libs/{imgui-118680c9ee0d3d43d0598f546839c354.dll → imgui-6b7327eec03453dd794e3214941c4474.dll} +0 -0
  26. meshlib.libs/{laz-perf-423db1b576b79cd19a84ca1f82b46ac3.dll → laz-perf-c8f5d4ef3059406a0621497eec52adab.dll} +0 -0
  27. meshlib.libs/{pybind11nonlimitedapi_stubs-288207b6dd7c11a28dabf2a04f7cc0b2.dll → pybind11nonlimitedapi_stubs-de5aa42d94f3287e6797305995ea5833.dll} +0 -0
  28. meshlib.libs/MRIOExtras-f6ebfde5f57418369b6b309250e54fd9.dll +0 -0
  29. {meshlib-3.0.8.228.dist-info → meshlib-3.0.8.247.dist-info}/WHEEL +0 -0
  30. {meshlib-3.0.8.228.dist-info → meshlib-3.0.8.247.dist-info}/licenses/LICENSE +0 -0
  31. {meshlib-3.0.8.228.dist-info → meshlib-3.0.8.247.dist-info}/top_level.txt +0 -0
meshlib/__init__.py CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  # start delvewheel patch
5
- def _delvewheel_patch_1_11_1():
5
+ def _delvewheel_patch_1_11_2():
6
6
  import ctypes
7
7
  import os
8
8
  import platform
@@ -13,10 +13,10 @@ def _delvewheel_patch_1_11_1():
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.8.228')
16
+ load_order_filepath = os.path.join(libs_dir, '.load-order-meshlib-3.0.8.247')
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.8.228')) as file:
19
+ with open(os.path.join(libs_dir, '.load-order-meshlib-3.0.8.247')) 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
@@ -27,8 +27,8 @@ def _delvewheel_patch_1_11_1():
27
27
  raise OSError('Error loading {}; {}'.format(lib, ctypes.FormatError(ctypes.get_last_error())))
28
28
 
29
29
 
30
- _delvewheel_patch_1_11_1()
31
- del _delvewheel_patch_1_11_1
30
+ _delvewheel_patch_1_11_2()
31
+ del _delvewheel_patch_1_11_2
32
32
  # end delvewheel patch
33
33
 
34
34
  # Fixes DLL loading paths.
meshlib/mrcudapy.pyd CHANGED
Binary file
meshlib/mrmeshnumpy.pyd CHANGED
Binary file
meshlib/mrmeshpy.pyd CHANGED
Binary file
meshlib/mrmeshpy.pyi CHANGED
@@ -779,6 +779,11 @@ class AABBTreePoints:
779
779
  def __init__(self) -> None:
780
780
  ...
781
781
  @typing.overload
782
+ def __init__(self, numBits: int, fillValue: bool) -> None:
783
+ """
784
+ creates bitset of given size filled with given value
785
+ """
786
+ @typing.overload
782
787
  def __init__(self, src: BitSet) -> None:
783
788
  """
784
789
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -1373,7 +1378,7 @@ class AffineXf3d:
1373
1378
  class AffineXf3f:
1374
1379
  """
1375
1380
  Generated from: MR::AffineXf3f
1376
- Aliases: Vector_AffineXf3f_ObjId.const_reference, Vector_AffineXf3f_ObjId.value_type, Vector_AffineXf3f_ObjId.reference
1381
+ Aliases: Vector_AffineXf3f_ObjId.reference, Vector_AffineXf3f_ObjId.const_reference, Vector_AffineXf3f_ObjId.value_type
1377
1382
 
1378
1383
  affine transformation: y = A*x + b, where A in VxV, and b in V
1379
1384
  """
@@ -4368,7 +4373,7 @@ class Box2d:
4368
4373
  class Box2f:
4369
4374
  """
4370
4375
  Generated from: MR::Box2f
4371
- Aliases: AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box2f.BoxT, AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box2f.BoxT, AABBTreeTraits_UndirectedEdgeTag_Box2f.BoxT
4376
+ Aliases: AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box2f.BoxT, AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box2f.BoxT, AABBTreeTraits_UndirectedEdgeTag_Box2f.BoxT
4372
4377
 
4373
4378
  Box given by its min- and max- corners
4374
4379
  """
@@ -13112,6 +13117,11 @@ class DistanceMapSave:
13112
13117
  2 integer - DistanceMap.resX & DistanceMap.resY
13113
13118
  [resX * resY] float - matrix of values
13114
13119
  """
13120
+ @staticmethod
13121
+ def toTiff(dmap: DistanceMap, path: os.PathLike | str | bytes, settings: DistanceMapSaveSettings = '{}') -> None:
13122
+ """
13123
+ saves in .tiff format
13124
+ """
13115
13125
  class DistanceMapSaveSettings:
13116
13126
  """
13117
13127
  Generated from: MR::DistanceMapSaveSettings
@@ -13848,6 +13858,11 @@ class EdgeBitSet(BitSet):
13848
13858
  def __init__(self) -> None:
13849
13859
  ...
13850
13860
  @typing.overload
13861
+ def __init__(self, numBits: int, fillValue: bool) -> None:
13862
+ """
13863
+ creates bitset of given size filled with given value
13864
+ """
13865
+ @typing.overload
13851
13866
  def __init__(self, src: BitSet) -> None:
13852
13867
  """
13853
13868
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -15902,6 +15917,11 @@ class FaceBitSet(BitSet):
15902
15917
  def __init__(self) -> None:
15903
15918
  ...
15904
15919
  @typing.overload
15920
+ def __init__(self, numBits: int, fillValue: bool) -> None:
15921
+ """
15922
+ creates bitset of given size filled with given value
15923
+ """
15924
+ @typing.overload
15905
15925
  def __init__(self, src: BitSet) -> None:
15906
15926
  """
15907
15927
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -21186,6 +21206,11 @@ class GraphEdgeBitSet(BitSet):
21186
21206
  def __init__(self) -> None:
21187
21207
  ...
21188
21208
  @typing.overload
21209
+ def __init__(self, numBits: int, fillValue: bool) -> None:
21210
+ """
21211
+ creates bitset of given size filled with given value
21212
+ """
21213
+ @typing.overload
21189
21214
  def __init__(self, src: BitSet) -> None:
21190
21215
  """
21191
21216
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -21403,6 +21428,11 @@ class GraphVertBitSet(BitSet):
21403
21428
  def __init__(self) -> None:
21404
21429
  ...
21405
21430
  @typing.overload
21431
+ def __init__(self, numBits: int, fillValue: bool) -> None:
21432
+ """
21433
+ creates bitset of given size filled with given value
21434
+ """
21435
+ @typing.overload
21406
21436
  def __init__(self, src: BitSet) -> None:
21407
21437
  """
21408
21438
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -21521,7 +21551,7 @@ class GraphVertBitSet(BitSet):
21521
21551
  class GraphVertId:
21522
21552
  """
21523
21553
  Generated from: MR::GraphVertId
21524
- Aliases: TypedBitSet_GraphVertId_IndexType, Graph.VertId, Vector_GraphVertId_GraphVertId.value_type, Vector_GraphVertId_GraphVertId.reference, Vector_GraphVertId_GraphVertId.const_reference
21554
+ Aliases: Vector_GraphVertId_GraphVertId.const_reference, TypedBitSet_GraphVertId_IndexType, Graph.VertId, Vector_GraphVertId_GraphVertId.value_type, Vector_GraphVertId_GraphVertId.reference
21525
21555
 
21526
21556
  stores index of some element, it is made as template class to avoid mixing faces, edges and vertices
21527
21557
  """
@@ -22895,7 +22925,7 @@ class IRenderObject:
22895
22925
  class Id_ICPElemtTag:
22896
22926
  """
22897
22927
  Generated from: MR::Id<MR::ICPElemtTag>
22898
- Aliases: std_vector_Id_ICPElemtTag_value_type, std_vector_Id_ICPElemtTag_reference, Vector_Id_ICPElemtTag_Id_ICPElemtTag.const_reference, std_vector_Id_ICPElemtTag_const_reference, ICPElementId, TypedBitSet_Id_ICPElemtTag.IndexType, Vector_Id_ICPElemtTag_Id_ICPElemtTag.value_type, Vector_Id_ICPElemtTag_Id_ICPElemtTag.reference
22928
+ Aliases: Vector_Id_ICPElemtTag_Id_ICPElemtTag.const_reference, std_vector_Id_ICPElemtTag_value_type, std_vector_Id_ICPElemtTag_reference, std_vector_Id_ICPElemtTag_const_reference, ICPElementId, TypedBitSet_Id_ICPElemtTag.IndexType, Vector_Id_ICPElemtTag_Id_ICPElemtTag.value_type, Vector_Id_ICPElemtTag_Id_ICPElemtTag.reference
22899
22929
 
22900
22930
  stores index of some element, it is made as template class to avoid mixing faces, edges and vertices
22901
22931
  """
@@ -32499,7 +32529,7 @@ class MeshOrPointsObject:
32499
32529
  class MeshOrPointsXf:
32500
32530
  """
32501
32531
  Generated from: MR::MeshOrPointsXf
32502
- Aliases: std_vector_MeshOrPointsXf_value_type, Vector_MeshOrPointsXf_ObjId.reference, Vector_MeshOrPointsXf_ObjId.const_reference, std_vector_MeshOrPointsXf_const_reference, std_vector_MeshOrPointsXf_reference, Vector_MeshOrPointsXf_ObjId.value_type
32532
+ Aliases: Vector_MeshOrPointsXf_ObjId.const_reference, std_vector_MeshOrPointsXf_value_type, Vector_MeshOrPointsXf_ObjId.reference, std_vector_MeshOrPointsXf_const_reference, std_vector_MeshOrPointsXf_reference, Vector_MeshOrPointsXf_ObjId.value_type
32503
32533
 
32504
32534
  an object and its transformation to global space with other objects
32505
32535
  """
@@ -34652,7 +34682,7 @@ class ModelBaseRenderParams(BaseRenderParams):
34652
34682
  class ModelPointsData:
34653
34683
  """
34654
34684
  Generated from: MR::ModelPointsData
34655
- Aliases: Vector_ModelPointsData_ObjId.reference, Vector_ModelPointsData_ObjId.const_reference, Vector_ModelPointsData_ObjId.value_type, std_vector_ModelPointsData_const_reference, std_vector_ModelPointsData_value_type, std_vector_ModelPointsData_reference
34685
+ Aliases: Vector_ModelPointsData_ObjId.reference, Vector_ModelPointsData_ObjId.const_reference, std_vector_ModelPointsData_const_reference, Vector_ModelPointsData_ObjId.value_type, std_vector_ModelPointsData_value_type, std_vector_ModelPointsData_reference
34656
34686
 
34657
34687
  structure to contain pointers to model data
34658
34688
  """
@@ -36070,7 +36100,7 @@ class NoCtor_unsigned_char:
36070
36100
  class NoDefInit_EdgeId(EdgeId):
36071
36101
  """
36072
36102
  Generated from: MR::NoDefInit<MR::EdgeId>
36073
- Aliases: Buffer_Id_EdgeTag_Id_EdgeTag_const_iterator, Buffer_Id_EdgeTag_UndirectedEdgeId_reference, Buffer_Id_EdgeTag_Id_EdgeTag_T, Buffer_Id_EdgeTag_Id_EdgeTag_const_reference, Buffer_Id_EdgeTag_Id_EdgeTag_iterator, Buffer_Id_EdgeTag_UndirectedEdgeId_iterator, Buffer_Id_EdgeTag_Id_EdgeTag_T, Buffer_Id_EdgeTag_UndirectedEdgeId_T, NoCtor_Id_EdgeTag_type, NoDefInit_Id_EdgeTag, Buffer_Id_EdgeTag_Id_EdgeTag_reference, Buffer_Id_EdgeTag_UndirectedEdgeId_T, NoDefInit_Id_EdgeTag, NoDefInit_Id_EdgeTag, Buffer_Id_EdgeTag_Id_EdgeTag_T, Buffer_Id_EdgeTag_UndirectedEdgeId_T, std_unique_ptr_NoDefInit_Id_EdgeTag_pointer, Buffer_Id_EdgeTag_UndirectedEdgeId_const_reference, Buffer_Id_EdgeTag_UndirectedEdgeId_const_iterator
36103
+ Aliases: Buffer_Id_EdgeTag_UndirectedEdgeId_T, Buffer_Id_EdgeTag_UndirectedEdgeId_const_reference, Buffer_Id_EdgeTag_Id_EdgeTag_const_iterator, Buffer_Id_EdgeTag_UndirectedEdgeId_reference, Buffer_Id_EdgeTag_Id_EdgeTag_T, Buffer_Id_EdgeTag_Id_EdgeTag_const_reference, Buffer_Id_EdgeTag_Id_EdgeTag_iterator, Buffer_Id_EdgeTag_UndirectedEdgeId_iterator, Buffer_Id_EdgeTag_Id_EdgeTag_T, Buffer_Id_EdgeTag_UndirectedEdgeId_T, NoCtor_Id_EdgeTag_type, NoDefInit_Id_EdgeTag, Buffer_Id_EdgeTag_Id_EdgeTag_reference, NoDefInit_Id_EdgeTag, NoDefInit_Id_EdgeTag, Buffer_Id_EdgeTag_Id_EdgeTag_T, Buffer_Id_EdgeTag_UndirectedEdgeId_T, std_unique_ptr_NoDefInit_Id_EdgeTag_pointer, Buffer_Id_EdgeTag_UndirectedEdgeId_const_iterator
36074
36104
 
36075
36105
  this class is similar to T, but does not make default initialization of the fields for best performance
36076
36106
  """
@@ -36128,7 +36158,7 @@ class NoDefInit_FaceId(FaceId):
36128
36158
  class NoDefInit_GraphEdgeId(GraphEdgeId):
36129
36159
  """
36130
36160
  Generated from: MR::NoDefInit<MR::GraphEdgeId>
36131
- Aliases: Buffer_GraphEdgeId_GraphEdgeId.const_iterator, Buffer_GraphEdgeId_GraphEdgeId.T, NoCtor_GraphEdgeId.type, Buffer_GraphEdgeId_GraphEdgeId.reference, Buffer_GraphEdgeId_GraphEdgeId.iterator, Buffer_GraphEdgeId_GraphEdgeId.const_reference
36161
+ Aliases: Buffer_GraphEdgeId_GraphEdgeId.T, Buffer_GraphEdgeId_GraphEdgeId.const_iterator, NoCtor_GraphEdgeId.type, Buffer_GraphEdgeId_GraphEdgeId.reference, Buffer_GraphEdgeId_GraphEdgeId.iterator, Buffer_GraphEdgeId_GraphEdgeId.const_reference
36132
36162
 
36133
36163
  this class is similar to T, but does not make default initialization of the fields for best performance
36134
36164
  """
@@ -36186,7 +36216,7 @@ class NoDefInit_GraphVertId(GraphVertId):
36186
36216
  class NoDefInit_Id_ICPElemtTag(Id_ICPElemtTag):
36187
36217
  """
36188
36218
  Generated from: MR::NoDefInit<MR::Id<MR::ICPElemtTag>>
36189
- Aliases: NoCtor_Id_ICPElemtTag.type, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.reference, std_unique_ptr_NoDefInit_Id_ICPElemtTag_pointer, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.T, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.T, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.T, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.iterator, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.const_iterator, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.const_reference
36219
+ Aliases: Buffer_Id_ICPElemtTag_Id_ICPElemtTag.T, NoCtor_Id_ICPElemtTag.type, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.reference, std_unique_ptr_NoDefInit_Id_ICPElemtTag_pointer, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.T, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.T, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.iterator, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.const_iterator, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.const_reference
36190
36220
 
36191
36221
  this class is similar to T, but does not make default initialization of the fields for best performance
36192
36222
  """
@@ -36273,7 +36303,7 @@ class NoDefInit_ObjId(ObjId):
36273
36303
  class NoDefInit_PixelId(PixelId):
36274
36304
  """
36275
36305
  Generated from: MR::NoDefInit<MR::PixelId>
36276
- Aliases: Buffer_PixelId_PixelId.iterator, NoCtor_PixelId.type, Buffer_PixelId_PixelId.T, Buffer_PixelId_PixelId.reference, Buffer_PixelId_PixelId.const_reference, Buffer_PixelId_PixelId.const_iterator
36306
+ Aliases: Buffer_PixelId_PixelId.const_iterator, Buffer_PixelId_PixelId.const_reference, Buffer_PixelId_PixelId.T, NoCtor_PixelId.type, Buffer_PixelId_PixelId.reference, Buffer_PixelId_PixelId.iterator
36277
36307
 
36278
36308
  this class is similar to T, but does not make default initialization of the fields for best performance
36279
36309
  """
@@ -36360,7 +36390,7 @@ class NoDefInit_TextureId(TextureId):
36360
36390
  class NoDefInit_UndirectedEdgeId(UndirectedEdgeId):
36361
36391
  """
36362
36392
  Generated from: MR::NoDefInit<MR::UndirectedEdgeId>
36363
- Aliases: Buffer_UndirectedEdgeId.iterator, Buffer_UndirectedEdgeId_UndirectedEdgeId.reference, Buffer_UndirectedEdgeId_UndirectedEdgeId.const_iterator, Buffer_UndirectedEdgeId_UndirectedEdgeId.iterator, Buffer_UndirectedEdgeId.const_iterator, Buffer_UndirectedEdgeId_UndirectedEdgeId.const_reference, Buffer_UndirectedEdgeId.const_reference, NoCtor_UndirectedEdgeId.type, Buffer_UndirectedEdgeId.T, Buffer_UndirectedEdgeId_UndirectedEdgeId.T, Buffer_UndirectedEdgeId.reference
36393
+ Aliases: Buffer_UndirectedEdgeId.iterator, Buffer_UndirectedEdgeId.T, Buffer_UndirectedEdgeId.const_iterator, Buffer_UndirectedEdgeId_UndirectedEdgeId.reference, Buffer_UndirectedEdgeId_UndirectedEdgeId.const_iterator, Buffer_UndirectedEdgeId_UndirectedEdgeId.iterator, Buffer_UndirectedEdgeId_UndirectedEdgeId.const_reference, Buffer_UndirectedEdgeId.const_reference, NoCtor_UndirectedEdgeId.type, Buffer_UndirectedEdgeId_UndirectedEdgeId.T, Buffer_UndirectedEdgeId.reference
36364
36394
 
36365
36395
  this class is similar to T, but does not make default initialization of the fields for best performance
36366
36396
  """
@@ -36389,7 +36419,7 @@ class NoDefInit_UndirectedEdgeId(UndirectedEdgeId):
36389
36419
  class NoDefInit_VertId(VertId):
36390
36420
  """
36391
36421
  Generated from: MR::NoDefInit<MR::VertId>
36392
- Aliases: Buffer_VertId_VertId.const_iterator, Buffer_VertId_VertId.reference, NoCtor_VertId.type, Buffer_VertId.const_iterator, Buffer_VertId_VertId.T, Buffer_VertId.const_reference, Buffer_VertId_VertId.const_reference, Buffer_VertId.T, Buffer_VertId.reference, Buffer_VertId_VertId.iterator, Buffer_VertId.iterator
36422
+ Aliases: Buffer_VertId_VertId.const_iterator, NoCtor_VertId.type, Buffer_VertId.const_iterator, Buffer_VertId_VertId.T, Buffer_VertId.const_reference, Buffer_VertId_VertId.const_reference, Buffer_VertId_VertId.reference, Buffer_VertId.T, Buffer_VertId.reference, Buffer_VertId_VertId.iterator, Buffer_VertId.iterator
36393
36423
 
36394
36424
  this class is similar to T, but does not make default initialization of the fields for best performance
36395
36425
  """
@@ -36418,7 +36448,7 @@ class NoDefInit_VertId(VertId):
36418
36448
  class NoDefInit_VoxelId(VoxelId):
36419
36449
  """
36420
36450
  Generated from: MR::NoDefInit<MR::VoxelId>
36421
- Aliases: Buffer_Id_VoxelTag_Id_VoxelTag_T, NoDefInit_Id_VoxelTag, NoDefInit_Id_VoxelTag, Buffer_Id_VoxelTag_Id_VoxelTag_const_reference, Buffer_Id_VoxelTag_Id_VoxelTag_const_iterator, Buffer_Id_VoxelTag_Id_VoxelTag_T, NoDefInit_Id_VoxelTag, Buffer_Id_VoxelTag_Id_VoxelTag_T, NoCtor_Id_VoxelTag_type, Buffer_Id_VoxelTag_Id_VoxelTag_reference, Buffer_Id_VoxelTag_Id_VoxelTag_iterator, std_unique_ptr_NoDefInit_Id_VoxelTag_pointer
36451
+ Aliases: Buffer_Id_VoxelTag_Id_VoxelTag_const_iterator, Buffer_Id_VoxelTag_Id_VoxelTag_T, NoDefInit_Id_VoxelTag, NoDefInit_Id_VoxelTag, Buffer_Id_VoxelTag_Id_VoxelTag_const_reference, Buffer_Id_VoxelTag_Id_VoxelTag_T, NoDefInit_Id_VoxelTag, Buffer_Id_VoxelTag_Id_VoxelTag_T, NoCtor_Id_VoxelTag_type, Buffer_Id_VoxelTag_Id_VoxelTag_reference, Buffer_Id_VoxelTag_Id_VoxelTag_iterator, std_unique_ptr_NoDefInit_Id_VoxelTag_pointer
36422
36452
 
36423
36453
  this class is similar to T, but does not make default initialization of the fields for best performance
36424
36454
  """
@@ -36539,6 +36569,11 @@ class NodeBitSet(BitSet):
36539
36569
  def __init__(self) -> None:
36540
36570
  ...
36541
36571
  @typing.overload
36572
+ def __init__(self, numBits: int, fillValue: bool) -> None:
36573
+ """
36574
+ creates bitset of given size filled with given value
36575
+ """
36576
+ @typing.overload
36542
36577
  def __init__(self, src: BitSet) -> None:
36543
36578
  """
36544
36579
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -36927,6 +36962,11 @@ class ObjBitSet(BitSet):
36927
36962
  def __init__(self) -> None:
36928
36963
  ...
36929
36964
  @typing.overload
36965
+ def __init__(self, numBits: int, fillValue: bool) -> None:
36966
+ """
36967
+ creates bitset of given size filled with given value
36968
+ """
36969
+ @typing.overload
36930
36970
  def __init__(self, src: BitSet) -> None:
36931
36971
  """
36932
36972
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -39222,7 +39262,7 @@ class ObjectTagEventDispatcher:
39222
39262
  class ObjectVoxels(ObjectMeshHolder):
39223
39263
  """
39224
39264
  Generated from: MR::ObjectVoxels
39225
- Aliases: ChangeGridAction.Obj, ChangVoxelSelectionAction.Obj, ChangeActiveBoxAction.Obj, ChangeDualMarchingCubesAction.Obj, ChangeIsoAction.Obj, ChangeSurfaceAction.Obj, std_shared_ptr_ObjectVoxels, std_shared_ptr_ChangeDualMarchingCubesAction_Obj, std_shared_ptr_ChangVoxelSelectionAction_Obj, std_shared_ptr_ChangeActiveBoxAction_Obj, std_shared_ptr_ChangeGridAction_Obj, std_shared_ptr_ChangeIsoAction_Obj, std_shared_ptr_ChangeSurfaceAction_Obj
39265
+ Aliases: ChangVoxelSelectionAction.Obj, ChangeActiveBoxAction.Obj, ChangeDualMarchingCubesAction.Obj, ChangeGridAction.Obj, ChangeIsoAction.Obj, ChangeSurfaceAction.Obj, std_shared_ptr_ObjectVoxels, std_shared_ptr_ChangeDualMarchingCubesAction_Obj, std_shared_ptr_ChangVoxelSelectionAction_Obj, std_shared_ptr_ChangeActiveBoxAction_Obj, std_shared_ptr_ChangeGridAction_Obj, std_shared_ptr_ChangeIsoAction_Obj, std_shared_ptr_ChangeSurfaceAction_Obj
39226
39266
 
39227
39267
  This class stores information about voxels object
39228
39268
  """
@@ -41748,6 +41788,11 @@ class PixelBitSet(BitSet):
41748
41788
  def __init__(self) -> None:
41749
41789
  ...
41750
41790
  @typing.overload
41791
+ def __init__(self, numBits: int, fillValue: bool) -> None:
41792
+ """
41793
+ creates bitset of given size filled with given value
41794
+ """
41795
+ @typing.overload
41751
41796
  def __init__(self, src: BitSet) -> None:
41752
41797
  """
41753
41798
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -46899,7 +46944,7 @@ class QuadraticForm3d:
46899
46944
  class QuadraticForm3f:
46900
46945
  """
46901
46946
  Generated from: MR::QuadraticForm3f
46902
- Aliases: Vector_QuadraticForm3f_VertId.value_type, Vector_QuadraticForm3f_VertId.reference, Vector_QuadraticForm3f_VertId.const_reference
46947
+ Aliases: Vector_QuadraticForm3f_VertId.const_reference, Vector_QuadraticForm3f_VertId.value_type, Vector_QuadraticForm3f_VertId.reference
46903
46948
 
46904
46949
  quadratic form: f = x^T A x + c
46905
46950
  """
@@ -47873,6 +47918,11 @@ class RegionBitSet(BitSet):
47873
47918
  def __init__(self) -> None:
47874
47919
  ...
47875
47920
  @typing.overload
47921
+ def __init__(self, numBits: int, fillValue: bool) -> None:
47922
+ """
47923
+ creates bitset of given size filled with given value
47924
+ """
47925
+ @typing.overload
47876
47926
  def __init__(self, src: BitSet) -> None:
47877
47927
  """
47878
47928
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -50592,6 +50642,12 @@ class SimpleVolumeMinMax(SimpleVolume, Box1f):
50592
50642
  represents a box in 3D space subdivided on voxels stored in T;
50593
50643
  and stores minimum and maximum values among all valid voxels
50594
50644
  """
50645
+ _offsetof_data: typing.ClassVar[int] = 0
50646
+ _offsetof_dims: typing.ClassVar[int] = 24
50647
+ _offsetof_voxelSize: typing.ClassVar[int] = 36
50648
+ data: Vector_float_VoxelId
50649
+ dims: Vector3i
50650
+ voxelSize: Vector3f
50595
50651
  @staticmethod
50596
50652
  @typing.overload
50597
50653
  def __init__(*args, **kwargs) -> None:
@@ -50614,6 +50670,8 @@ class SimpleVolumeMinMax(SimpleVolume, Box1f):
50614
50670
  """
50615
50671
  def __repr__(self) -> str:
50616
50672
  ...
50673
+ def heapBytes(self) -> int:
50674
+ ...
50617
50675
  class SimpleVolumeMinMaxU16(SimpleVolumeU16, Box_unsigned_short):
50618
50676
  """
50619
50677
  Generated from: MR::SimpleVolumeMinMaxU16
@@ -50621,6 +50679,12 @@ class SimpleVolumeMinMaxU16(SimpleVolumeU16, Box_unsigned_short):
50621
50679
  represents a box in 3D space subdivided on voxels stored in T;
50622
50680
  and stores minimum and maximum values among all valid voxels
50623
50681
  """
50682
+ _offsetof_data: typing.ClassVar[int] = 0
50683
+ _offsetof_dims: typing.ClassVar[int] = 24
50684
+ _offsetof_voxelSize: typing.ClassVar[int] = 36
50685
+ data: Vector_unsigned_short_VoxelId
50686
+ dims: Vector3i
50687
+ voxelSize: Vector3f
50624
50688
  @staticmethod
50625
50689
  @typing.overload
50626
50690
  def __init__(*args, **kwargs) -> None:
@@ -50643,6 +50707,8 @@ class SimpleVolumeMinMaxU16(SimpleVolumeU16, Box_unsigned_short):
50643
50707
  """
50644
50708
  def __repr__(self) -> str:
50645
50709
  ...
50710
+ def heapBytes(self) -> int:
50711
+ ...
50646
50712
  class SimpleVolumeU16:
50647
50713
  """
50648
50714
  Generated from: MR::SimpleVolumeU16
@@ -52463,7 +52529,7 @@ class SymMatrix3b:
52463
52529
  class SymMatrix3d:
52464
52530
  """
52465
52531
  Generated from: MR::SymMatrix3d
52466
- Aliases: QuadraticForm_Vector3d_SM, Vector3_double_SymMatrixType
52532
+ Aliases: Vector3_double_SymMatrixType, QuadraticForm_Vector3d_SM
52467
52533
 
52468
52534
  symmetric 3x3 matrix
52469
52535
  """
@@ -54358,6 +54424,11 @@ class TextureBitSet(BitSet):
54358
54424
  def __init__(self) -> None:
54359
54425
  ...
54360
54426
  @typing.overload
54427
+ def __init__(self, numBits: int, fillValue: bool) -> None:
54428
+ """
54429
+ creates bitset of given size filled with given value
54430
+ """
54431
+ @typing.overload
54361
54432
  def __init__(self, src: BitSet) -> None:
54362
54433
  """
54363
54434
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -56283,6 +56354,11 @@ class TypedBitSet_Id_ICPElemtTag(BitSet):
56283
56354
  def __init__(self) -> None:
56284
56355
  ...
56285
56356
  @typing.overload
56357
+ def __init__(self, numBits: int, fillValue: bool) -> None:
56358
+ """
56359
+ creates bitset of given size filled with given value
56360
+ """
56361
+ @typing.overload
56286
56362
  def __init__(self, src: BitSet) -> None:
56287
56363
  """
56288
56364
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -56745,6 +56821,11 @@ class UndirectedEdgeBitSet(BitSet):
56745
56821
  def __init__(self) -> None:
56746
56822
  ...
56747
56823
  @typing.overload
56824
+ def __init__(self, numBits: int, fillValue: bool) -> None:
56825
+ """
56826
+ creates bitset of given size filled with given value
56827
+ """
56828
+ @typing.overload
56748
56829
  def __init__(self, src: BitSet) -> None:
56749
56830
  """
56750
56831
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -57026,7 +57107,7 @@ class UndirectedEdgeColors:
57026
57107
  class UndirectedEdgeId:
57027
57108
  """
57028
57109
  Generated from: MR::UndirectedEdgeId
57029
- Aliases: PolylineUndirectedEdgeIterator.value_type, AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, TypedBitSet_UndirectedEdgeId_IndexType, AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, Vector_UndirectedEdgeId_UndirectedEdgeId_const_reference, UndirectedEdgeIterator.value_type, Vector_UndirectedEdgeId_UndirectedEdgeId_value_type, AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, Vector_UndirectedEdgeId_UndirectedEdgeId_reference
57110
+ Aliases: Vector_UndirectedEdgeId_UndirectedEdgeId_const_reference, PolylineUndirectedEdgeIterator.value_type, AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, TypedBitSet_UndirectedEdgeId_IndexType, AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, UndirectedEdgeIterator.value_type, Vector_UndirectedEdgeId_UndirectedEdgeId_value_type, AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, Vector_UndirectedEdgeId_UndirectedEdgeId_reference
57030
57111
 
57031
57112
  stores index of some element, it is made as template class to avoid mixing faces, edges and vertices
57032
57113
  """
@@ -58242,6 +58323,12 @@ class VdbVolume(VoxelsVolume_FloatGrid, Box1f):
58242
58323
  represents a box in 3D space subdivided on voxels stored in T;
58243
58324
  and stores minimum and maximum values among all valid voxels
58244
58325
  """
58326
+ _offsetof_data: typing.ClassVar[int] = 0
58327
+ _offsetof_dims: typing.ClassVar[int] = 16
58328
+ _offsetof_voxelSize: typing.ClassVar[int] = 28
58329
+ data: FloatGrid
58330
+ dims: Vector3i
58331
+ voxelSize: Vector3f
58245
58332
  @staticmethod
58246
58333
  @typing.overload
58247
58334
  def __init__(*args, **kwargs) -> None:
@@ -58264,6 +58351,8 @@ class VdbVolume(VoxelsVolume_FloatGrid, Box1f):
58264
58351
  """
58265
58352
  def __repr__(self) -> str:
58266
58353
  ...
58354
+ def heapBytes(self) -> int:
58355
+ ...
58267
58356
  class Vector2b:
58268
58357
  """
58269
58358
  Generated from: MR::Vector2b
@@ -64013,7 +64102,7 @@ class Vector_TextureId_TextureId:
64013
64102
  class Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag:
64014
64103
  """
64015
64104
  Generated from: MR::Vector<MR::Vector<MR::ICPGroupPairs, MR::Id<MR::ICPElemtTag>>, MR::Id<MR::ICPElemtTag>>
64016
- Aliases: Vector_Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag_int.value_type, ICPPairsGrid, std_vector_Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag_value_type, std_vector_Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag_reference, Vector_Vector_ICPGroupPairs_ICPElementId_ICPElementId, Vector_Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag_int.reference, std_vector_Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag_const_reference, Vector_Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag_int.const_reference
64105
+ Aliases: Vector_Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag_int.const_reference, std_vector_Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag_const_reference, Vector_Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag_int.value_type, ICPPairsGrid, std_vector_Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag_value_type, std_vector_Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag_reference, Vector_Vector_ICPGroupPairs_ICPElementId_ICPElementId, Vector_Vector_Vector_ICPGroupPairs_Id_ICPElemtTag_Id_ICPElemtTag_int.reference
64017
64106
 
64018
64107
 
64019
64108
  \\brief std::vector<T>-like container that requires specific indexing type,
@@ -67735,6 +67824,11 @@ class VertBitSet(BitSet):
67735
67824
  def __init__(self) -> None:
67736
67825
  ...
67737
67826
  @typing.overload
67827
+ def __init__(self, numBits: int, fillValue: bool) -> None:
67828
+ """
67829
+ creates bitset of given size filled with given value
67830
+ """
67831
+ @typing.overload
67738
67832
  def __init__(self, src: BitSet) -> None:
67739
67833
  """
67740
67834
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -70284,6 +70378,11 @@ class VoxelBitSet(BitSet):
70284
70378
  def __init__(self) -> None:
70285
70379
  ...
70286
70380
  @typing.overload
70381
+ def __init__(self, numBits: int, fillValue: bool) -> None:
70382
+ """
70383
+ creates bitset of given size filled with given value
70384
+ """
70385
+ @typing.overload
70287
70386
  def __init__(self, src: BitSet) -> None:
70288
70387
  """
70289
70388
  copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
@@ -70442,7 +70541,7 @@ class VoxelFilterType:
70442
70541
  class VoxelId:
70443
70542
  """
70444
70543
  Generated from: MR::VoxelId
70445
- Aliases: std_vector_Id_VoxelTag_const_reference, std_vector_Id_VoxelTag_reference, Id_VoxelTag, Vector_Id_VoxelTag_Id_VoxelTag_reference, Vector_Id_VoxelTag_Id_VoxelTag_const_reference, Id_VoxelTag, TypedBitSet_Id_VoxelTag_IndexType, Vector_Id_VoxelTag_FaceId_value_type, Vector_Id_VoxelTag_Id_VoxelTag_value_type, std_vector_Id_VoxelTag_value_type, Vector_Id_VoxelTag_FaceId_reference, Id_VoxelTag, Id_VoxelTag, Vector_Id_VoxelTag_FaceId_const_reference
70544
+ Aliases: std_vector_Id_VoxelTag_const_reference, std_vector_Id_VoxelTag_value_type, Vector_Id_VoxelTag_FaceId_reference, Vector_Id_VoxelTag_FaceId_value_type, std_vector_Id_VoxelTag_reference, Id_VoxelTag, Vector_Id_VoxelTag_Id_VoxelTag_reference, Vector_Id_VoxelTag_Id_VoxelTag_const_reference, Id_VoxelTag, TypedBitSet_Id_VoxelTag_IndexType, Vector_Id_VoxelTag_Id_VoxelTag_value_type, Id_VoxelTag, Id_VoxelTag, Vector_Id_VoxelTag_FaceId_const_reference
70446
70545
  """
70447
70546
  __hash__: typing.ClassVar[None] = None
70448
70547
  @staticmethod
@@ -71474,12 +71573,16 @@ class VoxelsVolumeAccessor_SimpleVolumeMinMax(VoxelsVolumeAccessor_SimpleVolume)
71474
71573
 
71475
71574
  VoxelsVolumeAccessor specialization for simple volumes with min/max
71476
71575
  """
71576
+ cacheEffective: typing.ClassVar[bool] = False
71477
71577
  VolumeType = SimpleVolumeMinMax
71478
71578
  @staticmethod
71479
71579
  @typing.overload
71480
71580
  def __init__(*args, **kwargs) -> None:
71481
71581
  ...
71482
71582
  @typing.overload
71583
+ def __init__(self, volume: SimpleVolume) -> None:
71584
+ ...
71585
+ @typing.overload
71483
71586
  def __init__(self, arg0: VoxelsVolumeAccessor_SimpleVolumeMinMax) -> None:
71484
71587
  """
71485
71588
  Implicit copy constructor.
@@ -75299,7 +75402,7 @@ class phmap_flat_hash_map_Id_VertTag_FlowAggregator_Flows:
75299
75402
  ...
75300
75403
  class phmap_flat_hash_map_Id_VertTag_Id_VertTag:
75301
75404
  """
75302
- Aliases: phmap_flat_hash_map_VertId_VertId, VertHashMap, MapOrHashMap_VertId_VertId.Hash
75405
+ Aliases: VertHashMap, phmap_flat_hash_map_VertId_VertId, MapOrHashMap_VertId_VertId.Hash
75303
75406
  """
75304
75407
  def __bool__(self) -> bool:
75305
75408
  """
@@ -75505,7 +75608,7 @@ class phmap_flat_hash_map_int_Box_Vector3_int:
75505
75608
  ...
75506
75609
  class phmap_flat_hash_map_unsigned_long_long_std_array_Id_VertTag_3:
75507
75610
  """
75508
- Aliases: SeparationPointMap, phmap_flat_hash_map_unsigned_long_long_std_array_VertId_3_phmap_Hash_uint64_t
75611
+ Aliases: phmap_flat_hash_map_unsigned_long_long_std_array_VertId_3_phmap_Hash_uint64_t, SeparationPointMap
75509
75612
  """
75510
75613
  def __bool__(self) -> bool:
75511
75614
  """
@@ -75786,7 +75889,7 @@ class std_array_PreciseVertCoords_8:
75786
75889
  ...
75787
75890
  class std_array_Vector3_double_3:
75788
75891
  """
75789
- Aliases: Triangle3d, std_array_Vector3d_3
75892
+ Aliases: std_array_Vector3d_3, Triangle3d
75790
75893
  """
75791
75894
  def __getitem__(self, arg0: int) -> Vector3d:
75792
75895
  ...
@@ -75811,7 +75914,7 @@ class std_array_Vector3_double_3:
75811
75914
  ...
75812
75915
  class std_array_Vector3_float_3:
75813
75916
  """
75814
- Aliases: Triangle3f, std_array_Vector3f_3, TriangleCornerNormals, Vector_std_array_Vector3f_3_FaceId.value_type, Vector_std_array_Vector3f_3_FaceId.reference, Vector_std_array_Vector3f_3_FaceId.const_reference
75917
+ Aliases: Vector_std_array_Vector3f_3_FaceId.value_type, Triangle3f, std_array_Vector3f_3, TriangleCornerNormals, Vector_std_array_Vector3f_3_FaceId.reference, Vector_std_array_Vector3f_3_FaceId.const_reference
75815
75918
  """
75816
75919
  def __getitem__(self, arg0: int) -> Vector3f:
75817
75920
  ...
@@ -76670,7 +76773,7 @@ class std_variant_Vector_Id_VertTag_Id_VertTag_phmap_flat_hash_map_Id_VertTag_Id
76670
76773
  """
76671
76774
  class std_variant_float_Vector3_float:
76672
76775
  """
76673
- Aliases: ObjectComparableWithReference.ComparisonReferenceValue.Var, std_variant_float_Vector3f, FeaturesPropertyTypesVariant
76776
+ Aliases: std_variant_float_Vector3f, ObjectComparableWithReference.ComparisonReferenceValue.Var, FeaturesPropertyTypesVariant
76674
76777
  """
76675
76778
  @typing.overload
76676
76779
  def __init__(self) -> None:
@@ -76747,7 +76850,7 @@ class std_variant_int_float_bool_std_string_Pdf_Cell_Empty:
76747
76850
  """
76748
76851
  class std_variant_std_monostate_MeshTriPoint_EdgePoint_Id_VertTag:
76749
76852
  """
76750
- Aliases: PickedPoint, std_variant_std_monostate_MeshTriPoint_EdgePoint_VertId
76853
+ Aliases: std_variant_std_monostate_MeshTriPoint_EdgePoint_VertId, PickedPoint
76751
76854
  """
76752
76855
  @typing.overload
76753
76856
  def __init__(self) -> None:
@@ -77910,7 +78013,7 @@ class std_vector_DistanceMap:
77910
78013
  ...
77911
78014
  class std_vector_EdgePoint:
77912
78015
  """
77913
- Aliases: Vector_std_vector_EdgePoint_VertId.value_type, SurfacePath, std_vector_std_vector_EdgePoint_value_type, std_vector_std_vector_EdgePoint_reference, IsoLine, PlaneSection, SurfacePath, std_vector_MeshEdgePoint, SurfacePath, Vector_std_vector_EdgePoint_VertId.reference, std_vector_MeshEdgePoint, Vector_std_vector_EdgePoint_VertId.const_reference, IsoLine, PlaneSection, std_vector_std_vector_EdgePoint_const_reference
78016
+ Aliases: SurfacePath, std_vector_std_vector_EdgePoint_value_type, Vector_std_vector_EdgePoint_VertId.value_type, std_vector_std_vector_EdgePoint_reference, IsoLine, PlaneSection, SurfacePath, std_vector_MeshEdgePoint, SurfacePath, Vector_std_vector_EdgePoint_VertId.reference, std_vector_MeshEdgePoint, Vector_std_vector_EdgePoint_VertId.const_reference, IsoLine, PlaneSection, std_vector_std_vector_EdgePoint_const_reference
77914
78017
  """
77915
78018
  __hash__: typing.ClassVar[None] = None
77916
78019
  element_type_byte_size: typing.ClassVar[int] = 8
@@ -90814,7 +90917,7 @@ class std_vector_std_vector_EdgePoint:
90814
90917
  ...
90815
90918
  class std_vector_std_vector_Id_EdgeTag:
90816
90919
  """
90817
- Aliases: std_vector_EdgeLoop, std_vector_EdgePath, std_vector_EdgePath, std_vector_EdgeLoop, std_vector_std_vector_EdgeId, std_vector_EdgeLoop, EdgeLoops, std_vector_EdgePath, std_vector_EdgeLoop
90920
+ Aliases: std_vector_EdgePath, std_vector_EdgeLoop, std_vector_EdgePath, std_vector_EdgeLoop, std_vector_std_vector_EdgeId, std_vector_EdgeLoop, EdgeLoops, std_vector_EdgePath, std_vector_EdgeLoop
90818
90921
  """
90819
90922
  __hash__: typing.ClassVar[None] = None
90820
90923
  element_type_byte_size: typing.ClassVar[int] = 24
@@ -91554,7 +91657,7 @@ class std_vector_std_vector_VarEdgeTri:
91554
91657
  ...
91555
91658
  class std_vector_std_vector_Vector2_double:
91556
91659
  """
91557
- Aliases: std_vector_std_vector_Vector2d, Contours2d
91660
+ Aliases: Contours2d, std_vector_std_vector_Vector2d
91558
91661
  """
91559
91662
  __hash__: typing.ClassVar[None] = None
91560
91663
  element_type_byte_size: typing.ClassVar[int] = 24
meshlib/mrviewerpy.pyd CHANGED
Binary file
@@ -1,2 +1,2 @@
1
- Version: 1.11.1
2
- Arguments: ['D:\\a\\MeshLib\\MeshLib\\venv\\Lib\\site-packages\\delvewheel\\__main__.py', 'repair', '--add-path', 'D:\\a\\MeshLib\\MeshLib\\source\\x64\\Release', '--analyze-existing', 'D:\\a\\MeshLib\\MeshLib\\scripts\\wheel\\meshlib\\dist\\meshlib-3.0.8.228-py38.py39.py310.py311.py312.py313-none-win_amd64.whl']
1
+ Version: 1.11.2
2
+ Arguments: ['D:\\a\\MeshLib\\MeshLib\\venv\\Lib\\site-packages\\delvewheel\\__main__.py', 'repair', '--add-path', 'D:\\a\\MeshLib\\MeshLib\\source\\x64\\Release', '--analyze-existing', 'D:\\a\\MeshLib\\MeshLib\\scripts\\wheel\\meshlib\\dist\\meshlib-3.0.8.247-py38.py39.py310.py311.py312.py313-none-win_amd64.whl']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshlib
3
- Version: 3.0.8.228
3
+ Version: 3.0.8.247
4
4
  Summary: 3d processing library
5
5
  Author-email: MeshLib Team <support@meshinspector.com>
6
6
  License: NON-COMMERCIAL & education LICENSE AGREEMENT
@@ -1,22 +1,22 @@
1
1
  meshlib/fa-solid-900.ttf,sha256=r2OXUD_O-9YTl2whrVweNymMGLvgfQltsDzNOvbgW6g,202744
2
- meshlib/mrcudapy.pyd,sha256=6E2ddNENUI52xiNOudc6NP55871IAc6uiYUvd0Zo1lc,787968
2
+ meshlib/mrcudapy.pyd,sha256=kqLO5TvlvQbMDOsb20aXGB52uSRnTzfAMrUSuX-mrMg,787968
3
3
  meshlib/mrcudapy.pyi,sha256=T6Ml9moVYIOxxccUqXt-w13Mih3HpnuaCFTz9qiNO7M,14881
4
4
  meshlib/MRDarkTheme.json,sha256=vG0DFLkx-d-XsNgsR7xbEF3MDvFy_xExrHvizXjCbBs,7842
5
5
  meshlib/MRLightTheme.json,sha256=UX0DcDdNPY2TdW-T_0ZDdlNt4Z9uIcntM69yOsrOQCs,7893
6
- meshlib/mrmeshnumpy.pyd,sha256=9OpMomQuAMtilp5h4oOOYggmotoHocF8FojfRzTSucs,178688
6
+ meshlib/mrmeshnumpy.pyd,sha256=TNPm5U3UUKKGH2VJBVKHh1odyOGutvQc6VlJ4ocX0Y4,178688
7
7
  meshlib/mrmeshnumpy.pyi,sha256=TMcf4zKkaG-8n2PjJt-Mwp4-u--vcQ8CwWczHNqkx8M,4555
8
- meshlib/mrmeshpy.pyd,sha256=r_wgShBBaxWzeKUz9o_muvygkL8bJPbDz2Y-jWZMjfY,55368192
9
- meshlib/mrmeshpy.pyi,sha256=w-niKCp2-hZd3kYA3IyOLoaT91BO7hQFfkgubi9Q1Gc,3532276
10
- meshlib/mrviewerpy.pyd,sha256=_Qx3TY_HOLSQHjEtchjc-dw7J2yB1kTalrklwj7RYtQ,444928
8
+ meshlib/mrmeshpy.pyd,sha256=Yk9WWw7wuutCVy0GqGwjqW-LAyNRVvaIh2S7JKVVP1Y,55420928
9
+ meshlib/mrmeshpy.pyi,sha256=q4Jm54yfD3_WY70aNHkgTlUB5tX3WkWNKg7JoAogeUU,3535870
10
+ meshlib/mrviewerpy.pyd,sha256=zxqDGYQxXlyczEWcBGoHdmH1p9FH0c7uCu0ejaPg0NY,444928
11
11
  meshlib/mrviewerpy.pyi,sha256=9lAdulmF6OhgHNXrM_fr4Feysw1hj5O-2gqREvtyhrU,20960
12
12
  meshlib/NotoSansSC-Regular.otf,sha256=ork-bC2wXWu79vJ9QT7HMmlzW3tnkBnIpaqWcP8P-_I,8482020
13
- meshlib/pybind11nonlimitedapi_meshlib_3.10.dll,sha256=iT2qlDXSdS44hBvG3T9Q_qhmn-PVQyesyYRP0rHzoUo,169472
14
- meshlib/pybind11nonlimitedapi_meshlib_3.11.dll,sha256=rc26_Ll9YvSkynPXyaRvd8BhyyfaISCWY4f1svBTk_w,172032
15
- meshlib/pybind11nonlimitedapi_meshlib_3.12.dll,sha256=pXUq3_b7EQkH_x1vcYIr_GhhQNYTe0GiAZmOvurdfLM,172544
16
- meshlib/pybind11nonlimitedapi_meshlib_3.13.dll,sha256=FZoMnX67TWpwh8DmmSWSojk7kS8Fa0Laig8bHyX-j-Q,172544
17
- meshlib/pybind11nonlimitedapi_meshlib_3.8.dll,sha256=r0X-WJuU9eoARX1aXyRNMU---2aH8zikB5OsjtZBG1A,169472
18
- meshlib/pybind11nonlimitedapi_meshlib_3.9.dll,sha256=rP6InT47UGcELDK1Ep5E8QJxMYo-I5b1GVzX7q-pyfs,170496
19
- meshlib/__init__.py,sha256=tqANkKMeJMf0HricYKb20h5Yvbs6Ht3Nn0AGKWQWkQs,2298
13
+ meshlib/pybind11nonlimitedapi_meshlib_3.10.dll,sha256=sFqEt-gLEZJpyg0EZBkNYPnKKzao8G3hVTMzMJ95ygQ,169472
14
+ meshlib/pybind11nonlimitedapi_meshlib_3.11.dll,sha256=5Yubwoj9hpfpesy_bvJujq5bym1Mag1ZkR0HfKJiO0w,172032
15
+ meshlib/pybind11nonlimitedapi_meshlib_3.12.dll,sha256=IYSJB2Y6j8feCZqOz4ZerW8F1e4MFmorAnnZg28GRgQ,172544
16
+ meshlib/pybind11nonlimitedapi_meshlib_3.13.dll,sha256=fW9L3vdDH4ASuC-fnfBdq2EGfhC8KU6GIaM9rSKO8Pw,172544
17
+ meshlib/pybind11nonlimitedapi_meshlib_3.8.dll,sha256=6tfdoNQwbcsgs7l0c2KUQSg79Da7Kagb9_MC2mnogng,169472
18
+ meshlib/pybind11nonlimitedapi_meshlib_3.9.dll,sha256=_BZlBYsU_cTM55Fi0U2Ckm8B9Hq8EraYJtPCDkPUYNo,170496
19
+ meshlib/__init__.py,sha256=-Pvuwu3J06c7u-Jqo8O7aVH_naiFAWPA9kSlMsORi4s,2298
20
20
  meshlib/resource/independent_icons/X1/mouse left.png,sha256=wxTyfcidN5Bgm-GdH0_iPKJulQo-TIoInzoXjoTpFw8,663
21
21
  meshlib/resource/independent_icons/X1/mouse right.png,sha256=V7cQU1_4f96VZh74estiBMiqhU7XX1uZsrGIVGsC53s,686
22
22
  meshlib/resource/independent_icons/X1/mouse scroll.png,sha256=tz0E_pMTgUtyc6Kqf-8AjdDO6aOguWjfpzJijCJbroM,640
@@ -72,13 +72,13 @@ meshlib/resource/object_icons/X3/SphereObject.png,sha256=eEi3PmyVvWwwtqENOHMIKJ-
72
72
  meshlib/resource/textures/controller_cube_default.png,sha256=nacIg4eoJwXfkJ4CPdVAtRrwKyTEQvPQpvM6MR4qNds,8590
73
73
  meshlib/resource/textures/controller_cube_edges.png,sha256=eDlrOxLpfGVvLTrZjqj6meoY4NtVfSaVo_zjKK-VFv0,10524
74
74
  meshlib/resource/textures/controller_cube_sides.png,sha256=h1QNB_KoEjMJEh3kq18EL2FoKD778PHH4kc6H66NiZQ,34610
75
- meshlib-3.0.8.228.dist-info/DELVEWHEEL,sha256=3wtHTdzBnU95hG4siGNKFoXsQSS6LsAFwkx79HFTSUw,331
76
- meshlib-3.0.8.228.dist-info/METADATA,sha256=z3tFQvMkERvXWx4N0NOIwY-7j1arP2Qd01d4AX6HGoE,17465
77
- meshlib-3.0.8.228.dist-info/RECORD,,
78
- meshlib-3.0.8.228.dist-info/top_level.txt,sha256=qxFkGYDQ1Pc6TMlvS0PU9oUjvaFMs97gWbPYzzJxqiM,8
79
- meshlib-3.0.8.228.dist-info/WHEEL,sha256=bRPdBuvdz6AE0BUkKxn5g7yesJW6hG54LS43dSk9a10,227
80
- meshlib-3.0.8.228.dist-info/licenses/LICENSE,sha256=G6WFHBIt_9QlaW1fo1h4w4cVdUhaK5UUNYYkddJuFe8,7813
81
- meshlib.libs/.load-order-meshlib-3.0.8.228,sha256=N_6wDHcETUHbCm8IeuUJjgror9ZbHpkNkZCo6Kz5jYE,3494
75
+ meshlib-3.0.8.247.dist-info/DELVEWHEEL,sha256=ti_pN5t8qIa3ei33rkajIWkOMjbBte2R47GgwG830a4,331
76
+ meshlib-3.0.8.247.dist-info/METADATA,sha256=Y5d-iyzFOyublbIiTXWsFaNrJLwrJqCvZzZeyydPhbQ,17465
77
+ meshlib-3.0.8.247.dist-info/RECORD,,
78
+ meshlib-3.0.8.247.dist-info/top_level.txt,sha256=qxFkGYDQ1Pc6TMlvS0PU9oUjvaFMs97gWbPYzzJxqiM,8
79
+ meshlib-3.0.8.247.dist-info/WHEEL,sha256=bRPdBuvdz6AE0BUkKxn5g7yesJW6hG54LS43dSk9a10,227
80
+ meshlib-3.0.8.247.dist-info/licenses/LICENSE,sha256=G6WFHBIt_9QlaW1fo1h4w4cVdUhaK5UUNYYkddJuFe8,7813
81
+ meshlib.libs/.load-order-meshlib-3.0.8.247,sha256=JM687KIWALH8gtOnhEFDyV6uLjFDMVeal3VRLKB1JuU,3494
82
82
  meshlib.libs/blosc-c5cfa941dc26fa3b508ba49cf9824e92.dll,sha256=5JzDPeUwcJQkpaqtauRO3A-PJnkIrgpSU_inHALYwBg,69632
83
83
  meshlib.libs/brotlicommon-f8d6f8acecff7e9060e3f811df4f32e9.dll,sha256=dP4H_THwWohgLReYevmAbdTOv6mDdFH51lNzOyyBQFc,137728
84
84
  meshlib.libs/brotlidec-04bb57b257f870f1da2edad0b3569ca2.dll,sha256=-pvC7PQAW9hVAXn-jM9-ZmjXUbiz1Rh84yAPbdvW4bk,51200
@@ -101,27 +101,27 @@ meshlib.libs/gmock-5bab972145380840a2ee80facdc53dba.dll,sha256=Kt1fabeWSPiNPY9oe
101
101
  meshlib.libs/hidapi-30001d32933f97d5dffc2fe53da8b62f.dll,sha256=Q0esEVIwS_J5O2EY0t8LSORfZZxRmleckaHxpp7dvkk,40448
102
102
  meshlib.libs/hpdf-be8ccf4535cd7c320703be54336490be.dll,sha256=IiboAWBMAg9syZzEKaNN0D5tH6bpeKpv7bzJ72ECfR0,737792
103
103
  meshlib.libs/Imath-3_1-5fd8fe0c7a7f40e0dd518c44d573db2a.dll,sha256=0OGvyLSSLO96JVmTX94z_wcjQkckY2EPmTM4k-R1iIM,337408
104
- meshlib.libs/imgui-118680c9ee0d3d43d0598f546839c354.dll,sha256=MUeBDjJTRY1BXpvMRS1YP_rLlECRMwDfgKaIAVvw6QQ,854528
104
+ meshlib.libs/imgui-6b7327eec03453dd794e3214941c4474.dll,sha256=t_sq0uZbIpLdoq7IWbJF7VvvFyUURmy3rBZO-cdGRNU,854528
105
105
  meshlib.libs/jpeg62-27813882f4f9dd04c118fc9d5f54f960.dll,sha256=YCfEYjum630yxyu16ZpcdeLtMdWnLiYf_8lZsTX5o5M,684544
106
106
  meshlib.libs/jsoncpp-bb2128ba929cc3d133da5ee9c9ad12d4.dll,sha256=xp-SumlMBX_rGHavM4J4DwL0JWgQcDPNpkprUauVFD8,204288
107
- meshlib.libs/laz-perf-423db1b576b79cd19a84ca1f82b46ac3.dll,sha256=Ni3pLAILu5Ie-I-sfG_IVQz6oQs2bS5Ko0CTBIOvxKI,220672
107
+ meshlib.libs/laz-perf-c8f5d4ef3059406a0621497eec52adab.dll,sha256=KPv4_ObxzdXglNZZy8_hLQgllYsQ8c_WIlhrdSqCsWw,220672
108
108
  meshlib.libs/libcurl-83b8202f4f7ff9593bbd8037951457ce.dll,sha256=hv-agCYl2b3KS5hvx4du7luJ8H1g0XdWI5WdEHisMoo,611840
109
109
  meshlib.libs/libexpat-2af1d99107bf442d4092c8c5fc46f4a7.dll,sha256=f0jarZcebe1vU70s-t_ahbWPPSW7Do5ApynUCjuPO98,159744
110
110
  meshlib.libs/liblzma-29a3cd7230b6035ef6a04ad8c91c63ff.dll,sha256=GrbiJ6k35gKDj9nMnoSSG2J-ESqlcNZJKVch_8h8q-E,187904
111
111
  meshlib.libs/libpng16-36c15b8f53ba934635dbb663e5055f5d.dll,sha256=suhx48VsSFdgjuXMcHmpX8kXrLb1a-n1M7ROIL7qNV4,208384
112
112
  meshlib.libs/lz4-5befb964ef71d27369d42d1b80ff4dc0.dll,sha256=edNbgkg3m79nD25nQlPV-5GdK06_9IWdMy89beylY8Y,127488
113
- meshlib.libs/MRCuda-aca8d72d2848bd945058c2ba74bbc482.dll,sha256=8CsVmKButK4B6S1nlZsA7bGVr5KSEeh_0IG6Ipv_2zQ,627712
114
- meshlib.libs/MRIOExtras-f6ebfde5f57418369b6b309250e54fd9.dll,sha256=wD3Qqo8o9QLkO418LXl_ptVKtrxd2BgS3XfNTXaXeJU,1227264
115
- meshlib.libs/MRMesh-0b2dfce768e5b2e9d6846e343dd6c94f.dll,sha256=DRoSfOhjivGm40e4Pqt5hrMPFKcpiCqB42BHE_Kcfc4,7384576
116
- meshlib.libs/MRPython-34fac47452f13486bbe8c941f1f7c0ce.dll,sha256=G-VFwYX_FPUh403eNKw0LO7lS7jJzFFkp06Si-82nPk,98816
117
- meshlib.libs/MRSymbolMesh-25e810659cf58c55f29cdb59603011ab.dll,sha256=Dm8DXkC5pYUIMJmkH2zWAFhwzBOU4GS90fnl1ifBc00,137216
118
- meshlib.libs/MRViewer-cb480721e62a8ba2f15fe913e3b66f6d.dll,sha256=8-XdkWM0R1Z6G2oGBZcRmA2JI6aNHihwuqEOHzLbIuo,4022784
119
- meshlib.libs/MRVoxels-bc7722eb34f15e2c4cb74e791f046424.dll,sha256=1cqjjiqGLLuy95WmaMYm75jfI0PbQjG4QEoCaiZedm8,4281856
113
+ meshlib.libs/MRCuda-312a585a38ade0d00a0bd9b9c8c7bc27.dll,sha256=dsGxWf8Ps3dl-iCYv9BnsTugmKABajidMDRH77KZsN0,626176
114
+ meshlib.libs/MRIOExtras-29f9758de0d671335f848a847f10f814.dll,sha256=L8tSH47WDaAVER8Bs-Sa_2vAWBIdvlw0F1K9fLtcdFE,1228288
115
+ meshlib.libs/MRMesh-cc2ea11ed826a8c81f05dcce4323d427.dll,sha256=vWSw62aljdQCWOtSEKN_O3c8sb94sxrCMap_U-9VdBs,7383552
116
+ meshlib.libs/MRPython-4e470886bc1cabdaedcc474171ea8710.dll,sha256=R-u4OKjQdKMR-J0oydd5uRkOBRkNPzKXXAfzmI3NjXQ,98816
117
+ meshlib.libs/MRSymbolMesh-0105b4efdc337bd621667fee88ba4ee1.dll,sha256=Xa8lTA-vIZ3hMAHNw2rP-MP1f7Q4qKy5b51z0gzbH3Q,137216
118
+ meshlib.libs/MRViewer-5026276932d810fe199475a7ebecc9db.dll,sha256=1128qNO7o9JrDbOyONWJG5Tu8gK5bHvCuPclh0KoMyA,4023296
119
+ meshlib.libs/MRVoxels-0e44f77e139bd0ed82e493ae28efff81.dll,sha256=V8r9fENcLCuqJUcL0UGyLNi-EDpCqDtkaCVv3TF2ivM,4281856
120
120
  meshlib.libs/msvcp140-7ad57ab8e996ff4ff5d366f689721c57.dll,sha256=frYH_E2AGNfyfP8SsSpNuxxbeuhNVFyXTmcjd28q7rQ,554496
121
- meshlib.libs/OpenCTM-c72e76af2825a59033aaaaafbb6d354b.dll,sha256=5o7rQfAO9Ocwv2wJ6GW8h_9M2fQrtN8tm838gRwU5SM,71680
121
+ meshlib.libs/OpenCTM-93256fdbabdf77193a867897525e57cc.dll,sha256=N-JHC6MQnWbdpmCWT23kcirxI5cbG3q3mbxIALCemRs,71680
122
122
  meshlib.libs/openjp2-abd2da941ce7a999c8ceecb41d2dff00.dll,sha256=ZC3G-liGpXaJI5AHqeqkhVegXIHG4K4nL-SMgYTc3jw,358912
123
123
  meshlib.libs/openvdb-67f2430c155bb86fa51a5c2583d629dc.dll,sha256=oQ2rOHVAJwq753RZqNWrDCZKX5q8G-xzov_KtJ-yiPk,3324416
124
- meshlib.libs/pybind11nonlimitedapi_stubs-288207b6dd7c11a28dabf2a04f7cc0b2.dll,sha256=jvUDuGKkyWicEylyFDDsAWDmrcMh1JIBqy9pcDUJGBg,68608
124
+ meshlib.libs/pybind11nonlimitedapi_stubs-de5aa42d94f3287e6797305995ea5833.dll,sha256=zz8hvnhdNflsBxxoVER73FYvjbJcOSm44GHV_I3BmOc,68608
125
125
  meshlib.libs/spdlog-6df689228f8c939f564e80070f2b9a92.dll,sha256=Si8_a8zGmru9p6e34Qh1TUPQoHcGOv8QHKowHmbI4gQ,282624
126
126
  meshlib.libs/tbb12-615ebaae30d4aebd29d7e848c98a09c0.dll,sha256=rj5X6eANcTJoh9i7uS_bo9RqD2OPt-K0U6bVljm909U,345088
127
127
  meshlib.libs/tiff-38b20789ef97b44ce4e23127bb11efdf.dll,sha256=8gyJWuBLvfo00E3GLYya7gqozFZMVEzNDYkkcR5AiKM,468480
@@ -1,77 +1,77 @@
1
- MRIOExtras-f6ebfde5f57418369b6b309250e54fd9.dll
2
- tinyxml2-ae2b1bd8198937b98b2fa19cfd864657.dll
3
- TKService-785c10ea8090989b6864c29e77ab4517.dll
4
- libexpat-2af1d99107bf442d4092c8c5fc46f4a7.dll
5
- TKV3d-65a7263ff3df09d93b9d570f912d097d.dll
6
- gdcmCommon-c7f4f5d1bc33eace6da3947c7b95aaa8.dll
7
- lz4-5befb964ef71d27369d42d1b80ff4dc0.dll
8
- TKShHealing-5a3c5b81659f6954f2699e823c252b00.dll
9
- glfw3-7f0644fa69993ba2c04d48a421358aa2.dll
10
- libcurl-83b8202f4f7ff9593bbd8037951457ce.dll
11
- MRSymbolMesh-25e810659cf58c55f29cdb59603011ab.dll
12
- TKXSBase-1c30ee8f859fc240ff49404e118fdd7c.dll
13
- spdlog-6df689228f8c939f564e80070f2b9a92.dll
14
- gdcmIOD-350dc2de14d7bb7de8cfbc3e81cbd324.dll
15
- TKVCAF-2d97e609f8e6263a639452663b5336e1.dll
16
- zip-9669faaf9a1033d301e8c18b1496e7dd.dll
17
- msvcp140-7ad57ab8e996ff4ff5d366f689721c57.dll
18
- TKGeomBase-7a72ec34bb24192b91ca0290f88775de.dll
1
+ E57Format-3159fd17794b00abc7c0604b8663ece3.dll
2
+ TKG3d-55269034b0712d02d0d9e240c129942a.dll
3
+ TKBO-a645e523568808a3d814088057445249.dll
4
+ TKernel-ca6035b713fe8ded800a57c1f4726f17.dll
5
+ gdcmjpeg12-83233b37f25a08220ea59f06b8309250.dll
19
6
  TKMath-082e19c068e197d3dd30cce9e7ae2915.dll
20
- jsoncpp-bb2128ba929cc3d133da5ee9c9ad12d4.dll
21
- freetype-9a6de9e8a2191664e5f4a93228a73386.dll
22
- imgui-118680c9ee0d3d43d0598f546839c354.dll
7
+ TKTopAlgo-67bb0fdfb9789fd26371dc5eefd08fe5.dll
8
+ libexpat-2af1d99107bf442d4092c8c5fc46f4a7.dll
9
+ gdcmjpeg8-3a601c314f922006161a29afa7404b49.dll
10
+ vcruntime140-2b7602cc1521101d116995e3e2ddfe09.dll
11
+ blosc-c5cfa941dc26fa3b508ba49cf9824e92.dll
12
+ OpenCTM-93256fdbabdf77193a867897525e57cc.dll
23
13
  bz2-71f813906a617c97470b54d5c87f907b.dll
24
- libpng16-36c15b8f53ba934635dbb663e5055f5d.dll
25
- TKPrim-5f25395ca94d969c8deee4ac2bea96e8.dll
26
- MRViewer-cb480721e62a8ba2f15fe913e3b66f6d.dll
27
- TKDESTEP-8d404f591b3cce3759d3c23fd1284379.dll
14
+ TKG2d-6b7eb91c405fa0c063b07c15ba78dcb0.dll
15
+ fmt-6091c2aaa6e0d445cac371149d5a2bf2.dll
16
+ gdcmDICT-cebe7cbe22420eea452be4f5e6e45926.dll
17
+ msvcp140-7ad57ab8e996ff4ff5d366f689721c57.dll
18
+ gdcmDSED-8d500580b9fe0b05a38126fea982624d.dll
19
+ MRIOExtras-29f9758de0d671335f848a847f10f814.dll
20
+ pybind11nonlimitedapi_stubs-de5aa42d94f3287e6797305995ea5833.dll
21
+ TKCDF-eddb2c4493888ffa2c12eac53174fb32.dll
22
+ TKXSBase-1c30ee8f859fc240ff49404e118fdd7c.dll
23
+ TKHLR-5c359462df660145ee6d8308decdca38.dll
24
+ hpdf-be8ccf4535cd7c320703be54336490be.dll
28
25
  vcruntime140_1-531b1a7ef539085bc67883cd171f3fae.dll
29
- gdcmjpeg16-c37e23fc56a0cf299deaca88621242c8.dll
26
+ libpng16-36c15b8f53ba934635dbb663e5055f5d.dll
27
+ hidapi-30001d32933f97d5dffc2fe53da8b62f.dll
30
28
  xerces-c_3_3-61d32d8254b77c9230385a111bd3024c.dll
31
- vcruntime140-2b7602cc1521101d116995e3e2ddfe09.dll
32
- blosc-c5cfa941dc26fa3b508ba49cf9824e92.dll
33
- MRMesh-0b2dfce768e5b2e9d6846e343dd6c94f.dll
34
- TKXCAF-c84d2df47394c3f664c3052c32b507ca.dll
29
+ gmock-5bab972145380840a2ee80facdc53dba.dll
35
30
  jpeg62-27813882f4f9dd04c118fc9d5f54f960.dll
36
- openvdb-67f2430c155bb86fa51a5c2583d629dc.dll
37
- TKBO-a645e523568808a3d814088057445249.dll
38
- TKCDF-eddb2c4493888ffa2c12eac53174fb32.dll
31
+ gdcmjpeg16-c37e23fc56a0cf299deaca88621242c8.dll
39
32
  TKGeomAlgo-017cdcb4ae0636575ff45c59c66f5779.dll
40
- fmt-6091c2aaa6e0d445cac371149d5a2bf2.dll
41
- TKG3d-55269034b0712d02d0d9e240c129942a.dll
42
- gdcmjpeg12-83233b37f25a08220ea59f06b8309250.dll
43
- zstd-806211ecfaf66b2b69ea8f91929f604a.dll
44
- zlib1-ba4d126d48970db18f494d09de7e449f.dll
45
- TKMesh-ce9652ce4d167f2c159e5d45582a431c.dll
46
- hidapi-30001d32933f97d5dffc2fe53da8b62f.dll
47
- MRPython-34fac47452f13486bbe8c941f1f7c0ce.dll
48
- E57Format-3159fd17794b00abc7c0604b8663ece3.dll
33
+ freetype-9a6de9e8a2191664e5f4a93228a73386.dll
34
+ lz4-5befb964ef71d27369d42d1b80ff4dc0.dll
49
35
  tiff-38b20789ef97b44ce4e23127bb11efdf.dll
36
+ tbb12-615ebaae30d4aebd29d7e848c98a09c0.dll
37
+ liblzma-29a3cd7230b6035ef6a04ad8c91c63ff.dll
38
+ turbojpeg-628b71a8a54a09a2df179f4ffc5ff51f.dll
39
+ jsoncpp-bb2128ba929cc3d133da5ee9c9ad12d4.dll
40
+ brotlidec-04bb57b257f870f1da2edad0b3569ca2.dll
41
+ TKXCAF-c84d2df47394c3f664c3052c32b507ca.dll
42
+ gdcmCommon-c7f4f5d1bc33eace6da3947c7b95aaa8.dll
43
+ imgui-6b7327eec03453dd794e3214941c4474.dll
44
+ TKV3d-65a7263ff3df09d93b9d570f912d097d.dll
45
+ spdlog-6df689228f8c939f564e80070f2b9a92.dll
46
+ TKDESTEP-8d404f591b3cce3759d3c23fd1284379.dll
47
+ MRCuda-312a585a38ade0d00a0bd9b9c8c7bc27.dll
48
+ tinyxml2-ae2b1bd8198937b98b2fa19cfd864657.dll
49
+ cpr-9c534b80d94fb4231b29860db3a63d3d.dll
50
+ gdcmIOD-350dc2de14d7bb7de8cfbc3e81cbd324.dll
51
+ TKLCAF-86c353891b4e79d6ec07196128d9d9a0.dll
52
+ TKCAF-2500147f5a8a7534863cfdb0fbbc1d28.dll
53
+ TKMesh-ce9652ce4d167f2c159e5d45582a431c.dll
54
+ zstd-806211ecfaf66b2b69ea8f91929f604a.dll
55
+ openvdb-67f2430c155bb86fa51a5c2583d629dc.dll
56
+ MRMesh-cc2ea11ed826a8c81f05dcce4323d427.dll
57
+ brotlicommon-f8d6f8acecff7e9060e3f811df4f32e9.dll
50
58
  gdcmMSFF-108f1748d889eef749872725bd9f4e65.dll
51
- TKHLR-5c359462df660145ee6d8308decdca38.dll
59
+ TKGeomBase-7a72ec34bb24192b91ca0290f88775de.dll
52
60
  Imath-3_1-5fd8fe0c7a7f40e0dd518c44d573db2a.dll
53
61
  gdcmcharls-82df2284266bb954529a22396a00b6b0.dll
54
- turbojpeg-628b71a8a54a09a2df179f4ffc5ff51f.dll
55
- OpenCTM-c72e76af2825a59033aaaaafbb6d354b.dll
56
- pybind11nonlimitedapi_stubs-288207b6dd7c11a28dabf2a04f7cc0b2.dll
62
+ zip-9669faaf9a1033d301e8c18b1496e7dd.dll
63
+ libcurl-83b8202f4f7ff9593bbd8037951457ce.dll
64
+ TKShHealing-5a3c5b81659f6954f2699e823c252b00.dll
65
+ TKDE-611a64cba1adbc092a376bd314dfcabb.dll
57
66
  TKBRep-a8674f74a9ec86bcb3cf5465786fa5dc.dll
58
- TKTopAlgo-67bb0fdfb9789fd26371dc5eefd08fe5.dll
59
- TKLCAF-86c353891b4e79d6ec07196128d9d9a0.dll
60
- brotlidec-04bb57b257f870f1da2edad0b3569ca2.dll
61
- cpr-9c534b80d94fb4231b29860db3a63d3d.dll
67
+ MRVoxels-0e44f77e139bd0ed82e493ae28efff81.dll
68
+ laz-perf-c8f5d4ef3059406a0621497eec52adab.dll
69
+ TKService-785c10ea8090989b6864c29e77ab4517.dll
70
+ MRViewer-5026276932d810fe199475a7ebecc9db.dll
71
+ zlib1-ba4d126d48970db18f494d09de7e449f.dll
62
72
  openjp2-abd2da941ce7a999c8ceecb41d2dff00.dll
63
- liblzma-29a3cd7230b6035ef6a04ad8c91c63ff.dll
64
- MRCuda-aca8d72d2848bd945058c2ba74bbc482.dll
65
- TKDE-611a64cba1adbc092a376bd314dfcabb.dll
66
- tbb12-615ebaae30d4aebd29d7e848c98a09c0.dll
67
- gdcmDICT-cebe7cbe22420eea452be4f5e6e45926.dll
68
- brotlicommon-f8d6f8acecff7e9060e3f811df4f32e9.dll
69
- laz-perf-423db1b576b79cd19a84ca1f82b46ac3.dll
70
- TKernel-ca6035b713fe8ded800a57c1f4726f17.dll
71
- TKG2d-6b7eb91c405fa0c063b07c15ba78dcb0.dll
72
- MRVoxels-bc7722eb34f15e2c4cb74e791f046424.dll
73
- TKCAF-2500147f5a8a7534863cfdb0fbbc1d28.dll
74
- gdcmDSED-8d500580b9fe0b05a38126fea982624d.dll
75
- hpdf-be8ccf4535cd7c320703be54336490be.dll
76
- gmock-5bab972145380840a2ee80facdc53dba.dll
77
- gdcmjpeg8-3a601c314f922006161a29afa7404b49.dll
73
+ TKVCAF-2d97e609f8e6263a639452663b5336e1.dll
74
+ glfw3-7f0644fa69993ba2c04d48a421358aa2.dll
75
+ MRSymbolMesh-0105b4efdc337bd621667fee88ba4ee1.dll
76
+ MRPython-4e470886bc1cabdaedcc474171ea8710.dll
77
+ TKPrim-5f25395ca94d969c8deee4ac2bea96e8.dll