meshlib 3.0.8.228__py39.py310.py311.py312.py313-none-macosx_12_0_x86_64.whl → 3.0.8.247__py39.py310.py311.py312.py313-none-macosx_12_0_x86_64.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/.dylibs/libMRIOExtras.dylib +0 -0
- meshlib/.dylibs/libMRMesh.dylib +0 -0
- meshlib/.dylibs/libMRViewer.dylib +0 -0
- meshlib/.dylibs/libcrypto.3.dylib +0 -0
- meshlib/.dylibs/libssl.3.dylib +0 -0
- meshlib/mrmeshpy.pyi +143 -40
- meshlib/mrmeshpy.so +0 -0
- {meshlib-3.0.8.228.dist-info → meshlib-3.0.8.247.dist-info}/METADATA +1 -1
- {meshlib-3.0.8.228.dist-info → meshlib-3.0.8.247.dist-info}/RECORD +12 -12
- {meshlib-3.0.8.228.dist-info → meshlib-3.0.8.247.dist-info}/WHEEL +0 -0
- {meshlib-3.0.8.228.dist-info → meshlib-3.0.8.247.dist-info}/licenses/LICENSE +0 -0
- {meshlib-3.0.8.228.dist-info → meshlib-3.0.8.247.dist-info}/top_level.txt +0 -0
|
Binary file
|
meshlib/.dylibs/libMRMesh.dylib
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
meshlib/.dylibs/libssl.3.dylib
CHANGED
|
Binary file
|
meshlib/mrmeshpy.pyi
CHANGED
|
@@ -347,7 +347,7 @@ class AABBTreeBase_ObjTreeTraits:
|
|
|
347
347
|
class AABBTreeNode_AABBTreeTraits_FaceTag_Box3f:
|
|
348
348
|
"""
|
|
349
349
|
Generated from: MR::AABBTreeNode<MR::AABBTreeTraits<MR::FaceTag, MR::Box3f>>
|
|
350
|
-
Aliases: Vector_AABBTreeNode_AABBTreeTraits_FaceTag_Box3f_NodeId.const_reference,
|
|
350
|
+
Aliases: Vector_AABBTreeNode_AABBTreeTraits_FaceTag_Box3f_NodeId.const_reference, Vector_AABBTreeNode_AABBTreeTraits_FaceTag_Box3f_NodeId.reference, Vector_AABBTreeNode_AABBTreeTraits_FaceTag_Box3f_NodeId.value_type, AABBTreeBase_AABBTreeTraits_FaceTag_Box3f.Node
|
|
351
351
|
"""
|
|
352
352
|
_offsetof_box: typing.ClassVar[int] = 0
|
|
353
353
|
_offsetof_l: typing.ClassVar[int] = 24
|
|
@@ -678,7 +678,7 @@ class AABBTreePoints:
|
|
|
678
678
|
class Node:
|
|
679
679
|
"""
|
|
680
680
|
Generated from: MR::AABBTreePoints::Node
|
|
681
|
-
Aliases: Vector_AABBTreePoints_Node_NodeId.reference, Vector_AABBTreePoints_Node_NodeId.value_type, std_vector_AABBTreePoints_Node_reference, std_vector_AABBTreePoints_Node_const_reference,
|
|
681
|
+
Aliases: Vector_AABBTreePoints_Node_NodeId.reference, Vector_AABBTreePoints_Node_NodeId.value_type, std_vector_AABBTreePoints_Node_reference, std_vector_AABBTreePoints_Node_const_reference, Vector_AABBTreePoints_Node_NodeId.const_reference, std_vector_AABBTreePoints_Node_value_type
|
|
682
682
|
"""
|
|
683
683
|
_offsetof_box: typing.ClassVar[int] = 0
|
|
684
684
|
_offsetof_l: typing.ClassVar[int] = 24
|
|
@@ -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>)
|
|
@@ -1084,7 +1089,7 @@ class AABBTreeTraits_UndirectedEdgeTag_Box2f:
|
|
|
1084
1089
|
class AABBTreeTraits_UndirectedEdgeTag_Box3f:
|
|
1085
1090
|
"""
|
|
1086
1091
|
Generated from: MR::AABBTreeTraits<MR::UndirectedEdgeTag, MR::Box3f>
|
|
1087
|
-
Aliases:
|
|
1092
|
+
Aliases: AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box3f.Traits, LineTreeTraits3
|
|
1088
1093
|
"""
|
|
1089
1094
|
BoxT = Box3f
|
|
1090
1095
|
LeafId = UndirectedEdgeId
|
|
@@ -1339,6 +1344,9 @@ class AffineXf3d:
|
|
|
1339
1344
|
def __eq__(self, b: AffineXf3d) -> bool:
|
|
1340
1345
|
...
|
|
1341
1346
|
@typing.overload
|
|
1347
|
+
def __init__(self, arg0: Matrix4d) -> None:
|
|
1348
|
+
...
|
|
1349
|
+
@typing.overload
|
|
1342
1350
|
def __init__(self) -> None:
|
|
1343
1351
|
...
|
|
1344
1352
|
@typing.overload
|
|
@@ -1349,9 +1357,6 @@ class AffineXf3d:
|
|
|
1349
1357
|
"""
|
|
1350
1358
|
Implicit copy constructor.
|
|
1351
1359
|
"""
|
|
1352
|
-
@typing.overload
|
|
1353
|
-
def __init__(self, arg0: Matrix4d) -> None:
|
|
1354
|
-
...
|
|
1355
1360
|
def __mul__(self, v: AffineXf3d) -> AffineXf3d:
|
|
1356
1361
|
"""
|
|
1357
1362
|
composition of two transformations:
|
|
@@ -1432,23 +1437,23 @@ class AffineXf3f:
|
|
|
1432
1437
|
Implicit copy constructor.
|
|
1433
1438
|
"""
|
|
1434
1439
|
@typing.overload
|
|
1435
|
-
def __init__(self, arg0: MeshToDistanceMapParams) -> None:
|
|
1436
|
-
"""
|
|
1437
|
-
converts in transformation
|
|
1438
|
-
"""
|
|
1439
|
-
@typing.overload
|
|
1440
1440
|
def __init__(self, arg0: DistanceMapToWorld) -> None:
|
|
1441
1441
|
"""
|
|
1442
1442
|
converts in transformation X: X(p) == toWorld( p.x, p.y, p.z )
|
|
1443
1443
|
"""
|
|
1444
1444
|
@typing.overload
|
|
1445
|
-
def __init__(self, arg0:
|
|
1445
|
+
def __init__(self, arg0: MeshToDistanceMapParams) -> None:
|
|
1446
1446
|
"""
|
|
1447
1447
|
converts in transformation
|
|
1448
1448
|
"""
|
|
1449
1449
|
@typing.overload
|
|
1450
1450
|
def __init__(self, arg0: Matrix4f) -> None:
|
|
1451
1451
|
...
|
|
1452
|
+
@typing.overload
|
|
1453
|
+
def __init__(self, arg0: ContourToDistanceMapParams) -> None:
|
|
1454
|
+
"""
|
|
1455
|
+
converts in transformation
|
|
1456
|
+
"""
|
|
1452
1457
|
def __mul__(self, v: AffineXf3f) -> AffineXf3f:
|
|
1453
1458
|
"""
|
|
1454
1459
|
composition of two transformations:
|
|
@@ -2860,7 +2865,7 @@ class BestFitParabolaf:
|
|
|
2860
2865
|
class BitSet:
|
|
2861
2866
|
"""
|
|
2862
2867
|
Generated from: MR::BitSet
|
|
2863
|
-
Aliases: TypedBitSet_VertId_base, TypedBitSet_UndirectedEdgeId_base, TypedBitSet_TextureId_base, TypedBitSet_RegionId_base, TypedBitSet_PixelId_base, TypedBitSet_ObjId_base, TypedBitSet_NodeId_base, TypedBitSet_Id_ICPElemtTag.base, TypedBitSet_GraphVertId_base, TypedBitSet_GraphEdgeId_base, TypedBitSet_FaceId_base,
|
|
2868
|
+
Aliases: TypedBitSet_VertId_base, TypedBitSet_UndirectedEdgeId_base, TypedBitSet_TextureId_base, TypedBitSet_RegionId_base, TypedBitSet_PixelId_base, TypedBitSet_ObjId_base, TypedBitSet_NodeId_base, TypedBitSet_Id_ICPElemtTag.base, TypedBitSet_GraphVertId_base, TypedBitSet_GraphEdgeId_base, TypedBitSet_FaceId_base, TypedBitSet_Id_VoxelTag_base, TypedBitSet_Id_EdgeTag_base
|
|
2864
2869
|
|
|
2865
2870
|
std::vector<bool> like container (random-access, size_t - index type, bool - value type)
|
|
2866
2871
|
with all bits after size() considered off during testing
|
|
@@ -8769,7 +8774,7 @@ class ChangeXfAction(HistoryAction):
|
|
|
8769
8774
|
class Chunk:
|
|
8770
8775
|
"""
|
|
8771
8776
|
Generated from: MR::Chunk
|
|
8772
|
-
Aliases: ChunkIterator.pointer, ChunkIterator.
|
|
8777
|
+
Aliases: ChunkIterator.pointer, ChunkIterator.reference, ChunkIterator.value_type
|
|
8773
8778
|
|
|
8774
8779
|
array chunk representation
|
|
8775
8780
|
"""
|
|
@@ -9019,7 +9024,7 @@ class CmpOld:
|
|
|
9019
9024
|
class Color:
|
|
9020
9025
|
"""
|
|
9021
9026
|
Generated from: MR::Color
|
|
9022
|
-
Aliases: std_vector_Color_const_reference, Vector_Color_FaceId_const_reference, Vector_Color_VertId_const_reference, Vector_Color_UndirectedEdgeId_value_type,
|
|
9027
|
+
Aliases: std_vector_Color_const_reference, Vector_Color_FaceId_const_reference, Vector_Color_VertId_const_reference, Vector_Color_UndirectedEdgeId_value_type, Vector_Color_UndirectedEdgeId_const_reference, Vector_Color_Id_EdgeTag_const_reference, Vector_Color_FaceId_value_type, Vector_Color_FaceId_reference, Vector_Color_VertId_reference, Vector_Color_UndirectedEdgeId_reference, std_vector_Color_value_type, Vector_Color_Id_EdgeTag_value_type, Vector_Color_Id_EdgeTag_reference, std_vector_Color_reference, Vector_Color_VertId_value_type
|
|
9023
9028
|
"""
|
|
9024
9029
|
_offsetof_a: typing.ClassVar[int] = 3
|
|
9025
9030
|
_offsetof_b: typing.ClassVar[int] = 2
|
|
@@ -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>)
|
|
@@ -14128,7 +14143,7 @@ class EdgeColors:
|
|
|
14128
14143
|
class EdgeId:
|
|
14129
14144
|
"""
|
|
14130
14145
|
Generated from: MR::EdgeId
|
|
14131
|
-
Aliases: std_vector_Id_EdgeTag_const_reference, Vector_Id_EdgeTag_UndirectedEdgeId_const_reference, Vector_Id_EdgeTag_FaceId_const_reference, Vector_Id_EdgeTag_VertId_const_reference, Vector_Id_EdgeTag_VertId_reference, std_vector_Id_EdgeTag_reference, Id_EdgeTag, Id_EdgeTag, Id_EdgeTag, std_vector_Id_EdgeTag_value_type, Vector_Id_EdgeTag_VertId_value_type,
|
|
14146
|
+
Aliases: std_vector_Id_EdgeTag_const_reference, Vector_Id_EdgeTag_UndirectedEdgeId_const_reference, Vector_Id_EdgeTag_FaceId_const_reference, Vector_Id_EdgeTag_VertId_const_reference, Vector_Id_EdgeTag_VertId_reference, std_vector_Id_EdgeTag_reference, Id_EdgeTag, Id_EdgeTag, Id_EdgeTag, std_vector_Id_EdgeTag_value_type, Vector_Id_EdgeTag_VertId_value_type, Vector_Id_EdgeTag_UndirectedEdgeId_value_type, Vector_Id_EdgeTag_FaceId_value_type, TypedBitSet_Id_EdgeTag_IndexType, RingIterator_NextEdgeSameOrigin.value_type, RingIterator_NextEdgeSameLeft.value_type, Id_EdgeTag, Vector_Id_EdgeTag_Id_EdgeTag_const_reference, Vector_Id_EdgeTag_FaceId_reference, Vector_Id_EdgeTag_Id_EdgeTag_value_type, Vector_Id_EdgeTag_Id_EdgeTag_reference, Vector_Id_EdgeTag_UndirectedEdgeId_reference
|
|
14132
14147
|
|
|
14133
14148
|
Those are full specializations in `MRId.h`, so `MR_CANONICAL_TYPEDEFS` doesn't work on them.
|
|
14134
14149
|
Have to add this too.
|
|
@@ -15868,7 +15883,7 @@ class FaceBMap:
|
|
|
15868
15883
|
class FaceBitSet(BitSet):
|
|
15869
15884
|
"""
|
|
15870
15885
|
Generated from: MR::FaceBitSet
|
|
15871
|
-
Aliases: Vector_FaceBitSet_GraphVertId.const_reference, Vector_FaceBitSet_GraphVertId.reference,
|
|
15886
|
+
Aliases: Vector_FaceBitSet_GraphVertId.const_reference, Vector_FaceBitSet_GraphVertId.reference, AABBTreeBase_AABBTreeTraits_FaceTag_Box3f.LeafBitSet, ColorMapAggregator_FaceTag_ElementBitSet, Vector_FaceBitSet_GraphVertId.value_type
|
|
15872
15887
|
|
|
15873
15888
|
Vector<bool, I> like container (random-access, I - index type, bool - value type)
|
|
15874
15889
|
with all bits after size() considered off during testing
|
|
@@ -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>)
|
|
@@ -16406,7 +16426,7 @@ class FaceFaceFace:
|
|
|
16406
16426
|
class FaceId:
|
|
16407
16427
|
"""
|
|
16408
16428
|
Generated from: MR::FaceId
|
|
16409
|
-
Aliases: AABBTreeTraits_FaceTag_Box3f.LeafId, Vector_FaceId_FaceId_reference, Vector_FaceId_FaceId_value_type, Vector_FaceId_FaceId_const_reference,
|
|
16429
|
+
Aliases: AABBTreeTraits_FaceTag_Box3f.LeafId, Vector_FaceId_FaceId_reference, Vector_FaceId_FaceId_value_type, Vector_FaceId_FaceId_const_reference, AABBTreeBase_AABBTreeTraits_FaceTag_Box3f.LeafId, AABBTreeNode_AABBTreeTraits_FaceTag_Box3f.LeafId, TypedBitSet_FaceId_IndexType
|
|
16410
16430
|
|
|
16411
16431
|
stores index of some element, it is made as template class to avoid mixing faces, edges and vertices
|
|
16412
16432
|
"""
|
|
@@ -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>)
|
|
@@ -27911,11 +27941,6 @@ class Matrix3f:
|
|
|
27911
27941
|
def __imatmul__(self, b: float) -> Matrix3f:
|
|
27912
27942
|
...
|
|
27913
27943
|
@typing.overload
|
|
27914
|
-
def __init__(self, arg0: Quaternionf) -> None:
|
|
27915
|
-
"""
|
|
27916
|
-
converts this into 3x3 rotation matrix
|
|
27917
|
-
"""
|
|
27918
|
-
@typing.overload
|
|
27919
27944
|
def __init__(self) -> None:
|
|
27920
27945
|
...
|
|
27921
27946
|
@typing.overload
|
|
@@ -27934,6 +27959,11 @@ class Matrix3f:
|
|
|
27934
27959
|
"""
|
|
27935
27960
|
Implicit copy constructor.
|
|
27936
27961
|
"""
|
|
27962
|
+
@typing.overload
|
|
27963
|
+
def __init__(self, arg0: Quaternionf) -> None:
|
|
27964
|
+
"""
|
|
27965
|
+
converts this into 3x3 rotation matrix
|
|
27966
|
+
"""
|
|
27937
27967
|
def __isub__(self, b: Matrix3f) -> Matrix3f:
|
|
27938
27968
|
...
|
|
27939
27969
|
def __itruediv__(self, b: float) -> Matrix3f:
|
|
@@ -34652,7 +34682,7 @@ class ModelBaseRenderParams(BaseRenderParams):
|
|
|
34652
34682
|
class ModelPointsData:
|
|
34653
34683
|
"""
|
|
34654
34684
|
Generated from: MR::ModelPointsData
|
|
34655
|
-
Aliases: std_vector_ModelPointsData_reference, Vector_ModelPointsData_ObjId.value_type,
|
|
34685
|
+
Aliases: std_vector_ModelPointsData_reference, Vector_ModelPointsData_ObjId.value_type, std_vector_ModelPointsData_const_reference, Vector_ModelPointsData_ObjId.reference, std_vector_ModelPointsData_value_type, Vector_ModelPointsData_ObjId.const_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_const_reference, Buffer_Id_EdgeTag_Id_EdgeTag_const_reference, NoCtor_Id_EdgeTag_type, Buffer_Id_EdgeTag_UndirectedEdgeId_reference, Buffer_Id_EdgeTag_Id_EdgeTag_T, Buffer_Id_EdgeTag_UndirectedEdgeId_T, Buffer_Id_EdgeTag_Id_EdgeTag_iterator, Buffer_Id_EdgeTag_UndirectedEdgeId_T, NoDefInit_Id_EdgeTag, Buffer_Id_EdgeTag_Id_EdgeTag_T, NoDefInit_Id_EdgeTag, Buffer_Id_EdgeTag_UndirectedEdgeId_T, std_unique_ptr_NoDefInit_Id_EdgeTag_pointer, Buffer_Id_EdgeTag_Id_EdgeTag_T,
|
|
36103
|
+
Aliases: Buffer_Id_EdgeTag_Id_EdgeTag_const_iterator, Buffer_Id_EdgeTag_UndirectedEdgeId_const_reference, Buffer_Id_EdgeTag_Id_EdgeTag_const_reference, NoCtor_Id_EdgeTag_type, Buffer_Id_EdgeTag_UndirectedEdgeId_reference, Buffer_Id_EdgeTag_Id_EdgeTag_T, Buffer_Id_EdgeTag_UndirectedEdgeId_T, Buffer_Id_EdgeTag_Id_EdgeTag_iterator, Buffer_Id_EdgeTag_UndirectedEdgeId_T, NoDefInit_Id_EdgeTag, Buffer_Id_EdgeTag_Id_EdgeTag_T, NoDefInit_Id_EdgeTag, Buffer_Id_EdgeTag_UndirectedEdgeId_T, std_unique_ptr_NoDefInit_Id_EdgeTag_pointer, Buffer_Id_EdgeTag_UndirectedEdgeId_iterator, Buffer_Id_EdgeTag_Id_EdgeTag_T, Buffer_Id_EdgeTag_UndirectedEdgeId_const_iterator, NoDefInit_Id_EdgeTag, Buffer_Id_EdgeTag_Id_EdgeTag_reference
|
|
36074
36104
|
|
|
36075
36105
|
this class is similar to T, but does not make default initialization of the fields for best performance
|
|
36076
36106
|
"""
|
|
@@ -36244,7 +36274,7 @@ class NoDefInit_NodeId(NodeId):
|
|
|
36244
36274
|
class NoDefInit_ObjId(ObjId):
|
|
36245
36275
|
"""
|
|
36246
36276
|
Generated from: MR::NoDefInit<MR::ObjId>
|
|
36247
|
-
Aliases:
|
|
36277
|
+
Aliases: NoCtor_ObjId.type, Buffer_ObjId_ObjId.reference, Buffer_ObjId_ObjId.T, Buffer_ObjId_ObjId.iterator, Buffer_ObjId_ObjId.const_iterator, Buffer_ObjId_ObjId.const_reference
|
|
36248
36278
|
|
|
36249
36279
|
this class is similar to T, but does not make default initialization of the fields for best performance
|
|
36250
36280
|
"""
|
|
@@ -36331,7 +36361,7 @@ class NoDefInit_RegionId(RegionId):
|
|
|
36331
36361
|
class NoDefInit_TextureId(TextureId):
|
|
36332
36362
|
"""
|
|
36333
36363
|
Generated from: MR::NoDefInit<MR::TextureId>
|
|
36334
|
-
Aliases: Buffer_TextureId_TextureId.iterator,
|
|
36364
|
+
Aliases: Buffer_TextureId_TextureId.iterator, NoCtor_TextureId.type, Buffer_TextureId_TextureId.reference, Buffer_TextureId_TextureId.const_reference, Buffer_TextureId_TextureId.T, Buffer_TextureId_TextureId.const_iterator
|
|
36335
36365
|
|
|
36336
36366
|
this class is similar to T, but does not make default initialization of the fields for best performance
|
|
36337
36367
|
"""
|
|
@@ -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.iterator, Buffer_UndirectedEdgeId.reference, NoCtor_UndirectedEdgeId.type, Buffer_UndirectedEdgeId_UndirectedEdgeId.T,
|
|
36393
|
+
Aliases: Buffer_UndirectedEdgeId.iterator, Buffer_UndirectedEdgeId_UndirectedEdgeId.iterator, Buffer_UndirectedEdgeId.reference, NoCtor_UndirectedEdgeId.type, Buffer_UndirectedEdgeId_UndirectedEdgeId.T, Buffer_UndirectedEdgeId_UndirectedEdgeId.reference, Buffer_UndirectedEdgeId.const_reference, Buffer_UndirectedEdgeId.const_iterator, Buffer_UndirectedEdgeId_UndirectedEdgeId.const_reference, Buffer_UndirectedEdgeId.T, Buffer_UndirectedEdgeId_UndirectedEdgeId.const_iterator
|
|
36364
36394
|
|
|
36365
36395
|
this class is similar to T, but does not make default initialization of the fields for best performance
|
|
36366
36396
|
"""
|
|
@@ -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: std_shared_ptr_ChangVoxelSelectionAction_Obj, std_shared_ptr_ChangeActiveBoxAction_Obj, std_shared_ptr_ChangeDualMarchingCubesAction_Obj, std_shared_ptr_ChangeIsoAction_Obj,
|
|
39265
|
+
Aliases: std_shared_ptr_ChangVoxelSelectionAction_Obj, std_shared_ptr_ChangeActiveBoxAction_Obj, std_shared_ptr_ChangeDualMarchingCubesAction_Obj, std_shared_ptr_ChangeIsoAction_Obj, ChangeDualMarchingCubesAction.Obj, ChangeGridAction.Obj, ChangeActiveBoxAction.Obj, std_shared_ptr_ChangeGridAction_Obj, std_shared_ptr_ChangeSurfaceAction_Obj, std_shared_ptr_ObjectVoxels, ChangeIsoAction.Obj, ChangeSurfaceAction.Obj, ChangVoxelSelectionAction.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>)
|
|
@@ -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>)
|
|
@@ -47991,7 +48041,7 @@ class RegionBitSet(BitSet):
|
|
|
47991
48041
|
class RegionId:
|
|
47992
48042
|
"""
|
|
47993
48043
|
Generated from: MR::RegionId
|
|
47994
|
-
Aliases: Vector_RegionId_VertId_const_reference, Vector_RegionId_RegionId.const_reference, Vector_RegionId_UndirectedEdgeId_const_reference, TypedBitSet_RegionId_IndexType, Vector_RegionId_VertId_reference, Vector_RegionId_RegionId.reference, Vector_RegionId_FaceId_reference, Vector_RegionId_VertId_value_type, Vector_RegionId_RegionId.value_type, Vector_RegionId_UndirectedEdgeId_reference, Vector_RegionId_FaceId_const_reference, Vector_RegionId_UndirectedEdgeId_value_type
|
|
48044
|
+
Aliases: Vector_RegionId_VertId_const_reference, Vector_RegionId_RegionId.const_reference, Vector_RegionId_UndirectedEdgeId_const_reference, TypedBitSet_RegionId_IndexType, Vector_RegionId_VertId_reference, Vector_RegionId_RegionId.reference, Vector_RegionId_FaceId_reference, Vector_RegionId_VertId_value_type, Vector_RegionId_RegionId.value_type, Vector_RegionId_UndirectedEdgeId_reference, Vector_RegionId_FaceId_value_type, Vector_RegionId_FaceId_const_reference, Vector_RegionId_UndirectedEdgeId_value_type
|
|
47995
48045
|
|
|
47996
48046
|
stores index of some element, it is made as template class to avoid mixing faces, edges and vertices
|
|
47997
48047
|
"""
|
|
@@ -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
|
|
@@ -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: Vector_UndirectedEdgeId_UndirectedEdgeId_value_type, TypedBitSet_UndirectedEdgeId_IndexType, AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, Vector_UndirectedEdgeId_UndirectedEdgeId_reference, AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, Vector_UndirectedEdgeId_UndirectedEdgeId_const_reference, UndirectedEdgeIterator.value_type,
|
|
57110
|
+
Aliases: Vector_UndirectedEdgeId_UndirectedEdgeId_value_type, TypedBitSet_UndirectedEdgeId_IndexType, AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, Vector_UndirectedEdgeId_UndirectedEdgeId_reference, AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, Vector_UndirectedEdgeId_UndirectedEdgeId_const_reference, UndirectedEdgeIterator.value_type, AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, PolylineUndirectedEdgeIterator.value_type
|
|
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
|
|
@@ -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: Vector_Id_VoxelTag_Id_VoxelTag_const_reference,
|
|
70544
|
+
Aliases: Vector_Id_VoxelTag_Id_VoxelTag_const_reference, Vector_Id_VoxelTag_FaceId_const_reference, Id_VoxelTag, Vector_Id_VoxelTag_FaceId_value_type, std_vector_Id_VoxelTag_reference, Id_VoxelTag, Vector_Id_VoxelTag_Id_VoxelTag_reference, Id_VoxelTag, std_vector_Id_VoxelTag_const_reference, TypedBitSet_Id_VoxelTag_IndexType, Vector_Id_VoxelTag_FaceId_reference, std_vector_Id_VoxelTag_value_type, Id_VoxelTag, Vector_Id_VoxelTag_Id_VoxelTag_value_type
|
|
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.
|
|
@@ -74715,7 +74818,7 @@ class int_output:
|
|
|
74715
74818
|
"""
|
|
74716
74819
|
class phmap_flat_hash_map_Id_EdgeTag_Id_EdgeTag:
|
|
74717
74820
|
"""
|
|
74718
|
-
Aliases: MapOrHashMap_Id_EdgeTag_Id_EdgeTag_Hash, HashMap_Id_EdgeTag_Id_EdgeTag,
|
|
74821
|
+
Aliases: MapOrHashMap_Id_EdgeTag_Id_EdgeTag_Hash, HashMap_Id_EdgeTag_Id_EdgeTag, MapOrHashMap_Id_EdgeTag_Id_EdgeTag_Hash, HashMap_EdgeId_EdgeId, phmap_flat_hash_map_EdgeId_EdgeId, EdgeHashMap, MapOrHashMap_Id_EdgeTag_Id_EdgeTag_Hash, HashMap_TypedBitSet_Id_EdgeTag_IndexType_TypedBitSet_Id_EdgeTag_IndexType
|
|
74719
74822
|
"""
|
|
74720
74823
|
def __bool__(self) -> bool:
|
|
74721
74824
|
"""
|
|
@@ -75341,7 +75444,7 @@ class phmap_flat_hash_map_Id_VertTag_Id_VertTag:
|
|
|
75341
75444
|
...
|
|
75342
75445
|
class phmap_flat_hash_map_Id_VertTag_VertPathInfo:
|
|
75343
75446
|
"""
|
|
75344
|
-
Aliases:
|
|
75447
|
+
Aliases: phmap_flat_hash_map_VertId_VertPathInfo, VertPathInfoMap
|
|
75345
75448
|
"""
|
|
75346
75449
|
def __bool__(self) -> bool:
|
|
75347
75450
|
"""
|
|
@@ -75641,7 +75744,7 @@ class std_array_Id_VertTag_2:
|
|
|
75641
75744
|
...
|
|
75642
75745
|
class std_array_Id_VertTag_3:
|
|
75643
75746
|
"""
|
|
75644
|
-
Aliases: Vector_std_array_VertId_3_FaceId_const_reference, std_array_VertId_3, Vector_std_array_VertId_3_FaceId_value_type, ThreeVertIds, SeparationPointSet
|
|
75747
|
+
Aliases: Vector_std_array_VertId_3_FaceId_const_reference, std_array_VertId_3, Vector_std_array_VertId_3_FaceId_value_type, Vector_std_array_VertId_3_FaceId_reference, ThreeVertIds, SeparationPointSet
|
|
75645
75748
|
"""
|
|
75646
75749
|
def __getitem__(self, arg0: int) -> VertId:
|
|
75647
75750
|
...
|
|
@@ -75811,7 +75914,7 @@ class std_array_Vector3_double_3:
|
|
|
75811
75914
|
...
|
|
75812
75915
|
class std_array_Vector3_float_3:
|
|
75813
75916
|
"""
|
|
75814
|
-
Aliases: Vector_std_array_Vector3f_3_FaceId.value_type, std_array_Vector3f_3, TriangleCornerNormals, Vector_std_array_Vector3f_3_FaceId.
|
|
75917
|
+
Aliases: Vector_std_array_Vector3f_3_FaceId.value_type, std_array_Vector3f_3, TriangleCornerNormals, Vector_std_array_Vector3f_3_FaceId.reference, Triangle3f, Vector_std_array_Vector3f_3_FaceId.const_reference
|
|
75815
75918
|
"""
|
|
75816
75919
|
def __getitem__(self, arg0: int) -> Vector3f:
|
|
75817
75920
|
...
|
|
@@ -77910,7 +78013,7 @@ class std_vector_DistanceMap:
|
|
|
77910
78013
|
...
|
|
77911
78014
|
class std_vector_EdgePoint:
|
|
77912
78015
|
"""
|
|
77913
|
-
Aliases: IsoLine, std_vector_std_vector_EdgePoint_const_reference, IsoLine, SurfacePath, std_vector_MeshEdgePoint, Vector_std_vector_EdgePoint_VertId.reference,
|
|
78016
|
+
Aliases: IsoLine, std_vector_std_vector_EdgePoint_const_reference, IsoLine, SurfacePath, std_vector_MeshEdgePoint, Vector_std_vector_EdgePoint_VertId.reference, Vector_std_vector_EdgePoint_VertId.value_type, std_vector_std_vector_EdgePoint_value_type, SurfacePath, std_vector_std_vector_EdgePoint_reference, std_vector_MeshEdgePoint, Vector_std_vector_EdgePoint_VertId.const_reference, PlaneSection, PlaneSection, SurfacePath
|
|
77914
78017
|
"""
|
|
77915
78018
|
__hash__: typing.ClassVar[None] = None
|
|
77916
78019
|
element_type_byte_size: typing.ClassVar[int] = 8
|
|
@@ -81266,7 +81369,7 @@ class std_vector_Id_UndirectedEdgeTag:
|
|
|
81266
81369
|
...
|
|
81267
81370
|
class std_vector_Id_VertTag:
|
|
81268
81371
|
"""
|
|
81269
|
-
Aliases: PlanarTriangulation.HoleVertIds
|
|
81372
|
+
Aliases: std_vector_VertId, PlanarTriangulation.HoleVertIds
|
|
81270
81373
|
"""
|
|
81271
81374
|
__hash__: typing.ClassVar[None] = None
|
|
81272
81375
|
element_type_byte_size: typing.ClassVar[int] = 4
|
|
@@ -85664,7 +85767,7 @@ class std_vector_UnorientedTriangle:
|
|
|
85664
85767
|
...
|
|
85665
85768
|
class std_vector_VarEdgeTri:
|
|
85666
85769
|
"""
|
|
85667
|
-
Aliases: PreciseCollisionResult,
|
|
85770
|
+
Aliases: PreciseCollisionResult, PreciseCollisionResult, ContinuousContour, ContinuousContour
|
|
85668
85771
|
"""
|
|
85669
85772
|
__hash__: typing.ClassVar[None] = None
|
|
85670
85773
|
element_type_byte_size: typing.ClassVar[int] = 8
|
|
@@ -91887,7 +91990,7 @@ class std_vector_std_vector_Vector3_double:
|
|
|
91887
91990
|
...
|
|
91888
91991
|
class std_vector_std_vector_Vector3_float:
|
|
91889
91992
|
"""
|
|
91890
|
-
Aliases:
|
|
91993
|
+
Aliases: Contours3f, std_vector_std_vector_Vector3f
|
|
91891
91994
|
"""
|
|
91892
91995
|
__hash__: typing.ClassVar[None] = None
|
|
91893
91996
|
element_type_byte_size: typing.ClassVar[int] = 24
|
meshlib/mrmeshpy.so
CHANGED
|
Binary file
|
|
@@ -6,23 +6,23 @@ meshlib/MRLightTheme.json,sha256=U7uWXldm1ntnF3CPARGpNaGp4YLjIOAaAalAZD3ygGo,731
|
|
|
6
6
|
meshlib/mrmeshnumpy.pyi,sha256=jsvARxVLM1bNQtACjO8uQbz9j3IUTNgQZfvBALs4JG4,4466
|
|
7
7
|
meshlib/__init__.py,sha256=wvHbg87n5KmBeXJ3KjzqRR20SEdG_hgcpUDW_iNMrXY,457
|
|
8
8
|
meshlib/mrcudapy.so,sha256=x4jkVaJzLfh0XWL7DURqBtYZ2esiDizCsnXbWUo-4YY,311680
|
|
9
|
-
meshlib/mrmeshpy.pyi,sha256
|
|
9
|
+
meshlib/mrmeshpy.pyi,sha256=-GuEFm9-biNu_AxW3whyzzNWAY7FUSiUUDstp0x4VOY,3438037
|
|
10
10
|
meshlib/mrmeshnumpy.so,sha256=yOuVOhBcV7q_CUD7UDc6XYdDOWn74P-ps6U3Z3O3oo4,307424
|
|
11
11
|
meshlib/mrcudapy.pyi,sha256=6YGb_WcPqj_WYfdDiA-OlylU6N1BnTAJZ6d-OfH0rEU,537
|
|
12
12
|
meshlib/libpybind11nonlimitedapi_meshlib_3.13.dylib,sha256=Eb3s_p-0ku7-ZQ5Bxlg1BNeBwoReWWEAT9WdqFD7094,214368
|
|
13
13
|
meshlib/libpybind11nonlimitedapi_meshlib_3.11.dylib,sha256=D7DIPdaFzF4w67lOyf8r4mHqtawuOPGToyTcEkkIP7g,214064
|
|
14
14
|
meshlib/mrviewerpy.so,sha256=ohxv3ERuX4ndtEzz1Nvp3BBvAdfD3oYXOJY8kL9ymZg,1005328
|
|
15
|
-
meshlib/mrmeshpy.so,sha256=
|
|
15
|
+
meshlib/mrmeshpy.so,sha256=42DrqrvWc6LRGlwjw-YXNgZbs0aBXbJUCBVCDoMnqNc,120510416
|
|
16
16
|
meshlib/libpybind11nonlimitedapi_meshlib_3.10.dylib,sha256=qr8vKuoTegsx0u2GUv0_nKLl_erseuB2wn90mu6RI2c,209744
|
|
17
17
|
meshlib/libpybind11nonlimitedapi_meshlib_3.12.dylib,sha256=QKSa7oUAcIAeLpgQ5HZioSi9grHLBr6xzoe9GAEEeCg,214160
|
|
18
18
|
meshlib/mrviewerpy.pyi,sha256=XWJWMGY7nIfDi8bjWhoslCdHuStBfZPDZmqkGWOuyAI,20364
|
|
19
19
|
meshlib/.dylibs/libOpenCTM.dylib,sha256=oeGTTKMxKtF9H8x69KZ7EDW-TmvZsM9phEeVwlpRGns,126368
|
|
20
20
|
meshlib/.dylibs/libTKLCAF.7.9.1.dylib,sha256=DdZXVv3VBd97EysgiFl4PMLpDpmIgcOEtGFpyNaezo0,666288
|
|
21
|
-
meshlib/.dylibs/libMRIOExtras.dylib,sha256=
|
|
21
|
+
meshlib/.dylibs/libMRIOExtras.dylib,sha256=pez3sY-nvuYiApWbQG9emPbvgMrHeYwdychFd3l-9A0,1718944
|
|
22
22
|
meshlib/.dylibs/libimgui.dylib,sha256=y_eSmYb_dxLcpJwMCXdPa1qJly_dSlS7EL7PFTpJQbk,1055712
|
|
23
23
|
meshlib/.dylibs/libTKernel.7.9.1.dylib,sha256=i5FodYbBhddP0jsi7LA6ADqSJNJeLN8FkDUzGAyqms4,1602880
|
|
24
24
|
meshlib/.dylibs/libpybind11nonlimitedapi_stubs.dylib,sha256=7F0dvs1_HJ5LZiovu-LO8d3xgXV9sdJKaQUFYSnWZHY,88560
|
|
25
|
-
meshlib/.dylibs/libMRViewer.dylib,sha256=
|
|
25
|
+
meshlib/.dylibs/libMRViewer.dylib,sha256=ipuMcSZb2tg4951tHL3TZajWkOhey-IgT6G2BMG-rLY,7248368
|
|
26
26
|
meshlib/.dylibs/liblazperf.dylib,sha256=5JxcRRfD51pakCA2qKV_6CuwvjolK0xjX9uVWAT0VB4,316288
|
|
27
27
|
meshlib/.dylibs/libjson-c.5.4.0.dylib,sha256=Q5E5XnAjOtjshoS3J5CmYZS5lWJcTo0A3S-Nk56qIsk,76960
|
|
28
28
|
meshlib/.dylibs/libTKCAF.7.9.1.dylib,sha256=YMmoz94GlWExsacfDI9hYF8lpcSOunAHtZJhLF_AB0Q,444272
|
|
@@ -43,7 +43,7 @@ meshlib/.dylibs/libTKXSBase.7.9.1.dylib,sha256=lXEHiKBsZMnA5N7xZhIsVfUcGPbYSPvCt
|
|
|
43
43
|
meshlib/.dylibs/libpng16.16.dylib,sha256=5If1vzaAZRR7X3V0vdxcX6Ftq3PTaLNO7hJ9lcQAypg,188224
|
|
44
44
|
meshlib/.dylibs/libTKDE.7.9.1.dylib,sha256=I3XAM_nAGu4B_DHPMRZcnE0TNjqDmgU9wgl_UWg2wF4,132608
|
|
45
45
|
meshlib/.dylibs/libicuuc.77.1.dylib,sha256=X3g2pfa1F7jGybKTKiSUGNICi7QPTAFpq8V3VJ6sw3I,1808368
|
|
46
|
-
meshlib/.dylibs/libssl.3.dylib,sha256=
|
|
46
|
+
meshlib/.dylibs/libssl.3.dylib,sha256=j-HZq3heZNLES43oSU3jBlHv98ZlLMkdtXLRBnCAfDk,911824
|
|
47
47
|
meshlib/.dylibs/libfmt.11.2.0.dylib,sha256=n1xEvM_KyIhjUZw8CPkyhCTGpfcdf8D3WZEFktZ_M8g,144928
|
|
48
48
|
meshlib/.dylibs/libTKV3d.7.9.1.dylib,sha256=QmC1wL8NUlq3RudVo7-bbZxZb46iPsS8zg39gwFpy5E,2442496
|
|
49
49
|
meshlib/.dylibs/libTKMesh.7.9.1.dylib,sha256=5h4NvV9fjlcIDf36VbB62VFm8mkO5YWv4NQWG9UxAiM,712512
|
|
@@ -54,7 +54,7 @@ meshlib/.dylibs/libTKMath.7.9.1.dylib,sha256=po1aIX0U6p2MtLoRCAYGGljHTidvwxNaNhT
|
|
|
54
54
|
meshlib/.dylibs/libgdcmMSFF.3.2.2.dylib,sha256=5ZhtlB8OVTZ1Pshah9IEzvQP1bVK9vXp63UN23A9EoU,2388048
|
|
55
55
|
meshlib/.dylibs/libTKShHealing.7.9.1.dylib,sha256=etfDhCd5Pb83fGIrRuz7y-_9Rlk-oPXI4nc-GEiQTns,2007472
|
|
56
56
|
meshlib/.dylibs/libfreetype.6.dylib,sha256=gudUfDjoVfJL8XLgptIAxUm85bxv14nwSukXBWFEVqI,672896
|
|
57
|
-
meshlib/.dylibs/libcrypto.3.dylib,sha256=
|
|
57
|
+
meshlib/.dylibs/libcrypto.3.dylib,sha256=LIhRwOgG4P6I0CrDgC6E_7402kM9itCJOYiRW9Tlr_w,5255568
|
|
58
58
|
meshlib/.dylibs/libcharls.2.4.2.dylib,sha256=JW8qNG8td_jNDn_khoA3ZJFvOTAc8dTMDYubLYjHkn0,323136
|
|
59
59
|
meshlib/.dylibs/libgdcmIOD.3.2.2.dylib,sha256=nLhswodjL3XF6nd_cJpahBCuO3QJWy-BC9eX4JBrJsA,102912
|
|
60
60
|
meshlib/.dylibs/libboost_regex.dylib,sha256=pJI0TgqsWLB2SmBK8FlJKTF6CyZGt_ZX62Lb67kkto8,370592
|
|
@@ -87,7 +87,7 @@ meshlib/.dylibs/libTKGeomAlgo.7.9.1.dylib,sha256=rIzLw5KOQqv2-2aSKrYncgujyCEN1lr
|
|
|
87
87
|
meshlib/.dylibs/libcpr.1.12.0.dylib,sha256=sUdCNpa4MlaRQ1qQhr7N-uCY-pYXIBropbnQwt9Hb-0,353488
|
|
88
88
|
meshlib/.dylibs/libTKBRep.7.9.1.dylib,sha256=7MG-0irSj0SkRvUrf-Ft4NF-vDThHHeZEHoSfKSp3yM,847680
|
|
89
89
|
meshlib/.dylibs/libTKXCAF.7.9.1.dylib,sha256=CXiXoADkAmjL8--LaLXdwPX3b35k8fqJaeWfn4Fmakc,706512
|
|
90
|
-
meshlib/.dylibs/libMRMesh.dylib,sha256=
|
|
90
|
+
meshlib/.dylibs/libMRMesh.dylib,sha256=mN36reWLn0cG89YdN0Kxpf2s4IdGdFjBI4Vb_fxmZzc,11845456
|
|
91
91
|
meshlib/.dylibs/libtiff.6.dylib,sha256=CEeBy21-bD03hNViADEhaA3iMqEzH2d7spoPWb7aIWY,547568
|
|
92
92
|
meshlib/.dylibs/libicui18n.77.1.dylib,sha256=ZL8V_DSrdHb0VzFU3h5jdAikmMwu3644x_nfFpygKBw,3104224
|
|
93
93
|
meshlib/.dylibs/libzstd.1.5.7.dylib,sha256=3eCjvslwo35bghtUj5lmLf6Sjx3pr3HpCGOUJ2S5Bxg,754720
|
|
@@ -150,8 +150,8 @@ meshlib/resource/object_icons/X3/DistanceMeasurementObject.png,sha256=9_O6g6KW96
|
|
|
150
150
|
meshlib/resource/object_icons/X3/ObjectGcode.png,sha256=Bnh_Vq1N1wNCbQiqpYDJe6sjxhDR3hIxUr7Ke8ykYzY,1315
|
|
151
151
|
meshlib/resource/object_icons/X3/ObjectLabel.png,sha256=l5QzgpDV3lfm_mHKk7KSSHICKgPH9-pcSckBvxx24e0,700
|
|
152
152
|
meshlib/resource/object_icons/X3/SphereObject.png,sha256=eEi3PmyVvWwwtqENOHMIKJ-W_KGiNc0O7MiWwWIyTtg,1954
|
|
153
|
-
meshlib-3.0.8.
|
|
154
|
-
meshlib-3.0.8.
|
|
155
|
-
meshlib-3.0.8.
|
|
156
|
-
meshlib-3.0.8.
|
|
157
|
-
meshlib-3.0.8.
|
|
153
|
+
meshlib-3.0.8.247.dist-info/RECORD,,
|
|
154
|
+
meshlib-3.0.8.247.dist-info/WHEEL,sha256=aTMzska3pBaJQbTzokoWfGbwc_naqobvAjyN8klEVu8,247
|
|
155
|
+
meshlib-3.0.8.247.dist-info/top_level.txt,sha256=qxFkGYDQ1Pc6TMlvS0PU9oUjvaFMs97gWbPYzzJxqiM,8
|
|
156
|
+
meshlib-3.0.8.247.dist-info/METADATA,sha256=fGRG__L92dyk9MvKN2Uf2HE6DpioqIyCy5HaVzrDiBQ,17201
|
|
157
|
+
meshlib-3.0.8.247.dist-info/licenses/LICENSE,sha256=sQZbvhjgrgYxqoOJNpBjj0mcH_hEhSeyj6eM9j1NUP8,7665
|
|
File without changes
|
|
File without changes
|
|
File without changes
|