meshlib 3.0.8.228__py38.py39.py310.py311.py312.py313-none-macosx_12_0_arm64.whl → 3.0.8.247__py38.py39.py310.py311.py312.py313-none-macosx_12_0_arm64.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 +150 -47
- 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
|
@@ -678,7 +678,7 @@ class AABBTreePoints:
|
|
|
678
678
|
class Node:
|
|
679
679
|
"""
|
|
680
680
|
Generated from: MR::AABBTreePoints::Node
|
|
681
|
-
Aliases: std_vector_AABBTreePoints_Node_const_reference, Vector_AABBTreePoints_Node_NodeId.const_reference, Vector_AABBTreePoints_Node_NodeId.reference,
|
|
681
|
+
Aliases: std_vector_AABBTreePoints_Node_const_reference, Vector_AABBTreePoints_Node_NodeId.const_reference, Vector_AABBTreePoints_Node_NodeId.reference, Vector_AABBTreePoints_Node_NodeId.value_type, std_vector_AABBTreePoints_Node_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>)
|
|
@@ -1339,9 +1344,6 @@ class AffineXf3d:
|
|
|
1339
1344
|
def __eq__(self, b: AffineXf3d) -> bool:
|
|
1340
1345
|
...
|
|
1341
1346
|
@typing.overload
|
|
1342
|
-
def __init__(self, arg0: Matrix4d) -> None:
|
|
1343
|
-
...
|
|
1344
|
-
@typing.overload
|
|
1345
1347
|
def __init__(self) -> None:
|
|
1346
1348
|
...
|
|
1347
1349
|
@typing.overload
|
|
@@ -1352,6 +1354,9 @@ class AffineXf3d:
|
|
|
1352
1354
|
"""
|
|
1353
1355
|
Implicit copy constructor.
|
|
1354
1356
|
"""
|
|
1357
|
+
@typing.overload
|
|
1358
|
+
def __init__(self, arg0: Matrix4d) -> None:
|
|
1359
|
+
...
|
|
1355
1360
|
def __mul__(self, v: AffineXf3d) -> AffineXf3d:
|
|
1356
1361
|
"""
|
|
1357
1362
|
composition of two transformations:
|
|
@@ -1415,19 +1420,6 @@ class AffineXf3f:
|
|
|
1415
1420
|
def __eq__(self, b: AffineXf3f) -> bool:
|
|
1416
1421
|
...
|
|
1417
1422
|
@typing.overload
|
|
1418
|
-
def __init__(self, arg0: DistanceMapToWorld) -> None:
|
|
1419
|
-
"""
|
|
1420
|
-
converts in transformation X: X(p) == toWorld( p.x, p.y, p.z )
|
|
1421
|
-
"""
|
|
1422
|
-
@typing.overload
|
|
1423
|
-
def __init__(self, arg0: Matrix4f) -> None:
|
|
1424
|
-
...
|
|
1425
|
-
@typing.overload
|
|
1426
|
-
def __init__(self, arg0: MeshToDistanceMapParams) -> None:
|
|
1427
|
-
"""
|
|
1428
|
-
converts in transformation
|
|
1429
|
-
"""
|
|
1430
|
-
@typing.overload
|
|
1431
1423
|
def __init__(self) -> None:
|
|
1432
1424
|
...
|
|
1433
1425
|
@typing.overload
|
|
@@ -1449,6 +1441,19 @@ class AffineXf3f:
|
|
|
1449
1441
|
"""
|
|
1450
1442
|
converts in transformation
|
|
1451
1443
|
"""
|
|
1444
|
+
@typing.overload
|
|
1445
|
+
def __init__(self, arg0: MeshToDistanceMapParams) -> None:
|
|
1446
|
+
"""
|
|
1447
|
+
converts in transformation
|
|
1448
|
+
"""
|
|
1449
|
+
@typing.overload
|
|
1450
|
+
def __init__(self, arg0: Matrix4f) -> None:
|
|
1451
|
+
...
|
|
1452
|
+
@typing.overload
|
|
1453
|
+
def __init__(self, arg0: DistanceMapToWorld) -> None:
|
|
1454
|
+
"""
|
|
1455
|
+
converts in transformation X: X(p) == toWorld( p.x, p.y, p.z )
|
|
1456
|
+
"""
|
|
1452
1457
|
def __mul__(self, v: AffineXf3f) -> AffineXf3f:
|
|
1453
1458
|
"""
|
|
1454
1459
|
composition of two transformations:
|
|
@@ -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, Vector_Color_Id_EdgeTag_const_reference, Vector_Color_Id_EdgeTag_reference, Vector_Color_FaceId_value_type, Vector_Color_FaceId_reference, Vector_Color_UndirectedEdgeId_const_reference, std_vector_Color_reference,
|
|
9027
|
+
Aliases: std_vector_Color_const_reference, Vector_Color_FaceId_const_reference, Vector_Color_VertId_const_reference, Vector_Color_UndirectedEdgeId_value_type, Vector_Color_Id_EdgeTag_const_reference, Vector_Color_Id_EdgeTag_reference, Vector_Color_FaceId_value_type, Vector_Color_FaceId_reference, Vector_Color_UndirectedEdgeId_const_reference, std_vector_Color_reference, Vector_Color_Id_EdgeTag_value_type, std_vector_Color_value_type, Vector_Color_VertId_value_type, Vector_Color_UndirectedEdgeId_reference, Vector_Color_VertId_reference
|
|
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,
|
|
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, Vector_Id_EdgeTag_FaceId_value_type, Id_EdgeTag, Id_EdgeTag, Vector_Id_EdgeTag_UndirectedEdgeId_reference, Vector_Id_EdgeTag_Id_EdgeTag_reference, std_vector_Id_EdgeTag_value_type, Vector_Id_EdgeTag_VertId_value_type, Vector_Id_EdgeTag_Id_EdgeTag_value_type, TypedBitSet_Id_EdgeTag_IndexType, Vector_Id_EdgeTag_Id_EdgeTag_const_reference, Vector_Id_EdgeTag_FaceId_reference, Id_EdgeTag, Id_EdgeTag, RingIterator_NextEdgeSameOrigin.value_type, Vector_Id_EdgeTag_UndirectedEdgeId_value_type, RingIterator_NextEdgeSameLeft.value_type
|
|
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.
|
|
@@ -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>)
|
|
@@ -17002,7 +17022,7 @@ class FaceScalars:
|
|
|
17002
17022
|
class FanRecord:
|
|
17003
17023
|
"""
|
|
17004
17024
|
Generated from: MR::FanRecord
|
|
17005
|
-
Aliases:
|
|
17025
|
+
Aliases: std_vector_FanRecord_reference, Vector_FanRecord_VertId.reference, std_vector_FanRecord_value_type, Vector_FanRecord_VertId.value_type, Vector_FanRecord_VertId.const_reference, std_vector_FanRecord_const_reference
|
|
17006
17026
|
|
|
17007
17027
|
describes one fan of triangles around a point excluding the point
|
|
17008
17028
|
"""
|
|
@@ -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>)
|
|
@@ -36091,7 +36121,7 @@ class NoCtor_unsigned_char:
|
|
|
36091
36121
|
class NoDefInit_EdgeId(EdgeId):
|
|
36092
36122
|
"""
|
|
36093
36123
|
Generated from: MR::NoDefInit<MR::EdgeId>
|
|
36094
|
-
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,
|
|
36124
|
+
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_const_iterator, Buffer_Id_EdgeTag_Id_EdgeTag_iterator, Buffer_Id_EdgeTag_UndirectedEdgeId_T, NoDefInit_Id_EdgeTag, Buffer_Id_EdgeTag_Id_EdgeTag_T, Buffer_Id_EdgeTag_UndirectedEdgeId_T, Buffer_Id_EdgeTag_Id_EdgeTag_reference, NoDefInit_Id_EdgeTag, std_unique_ptr_NoDefInit_Id_EdgeTag_pointer, NoDefInit_Id_EdgeTag, Buffer_Id_EdgeTag_Id_EdgeTag_T, Buffer_Id_EdgeTag_UndirectedEdgeId_T, Buffer_Id_EdgeTag_UndirectedEdgeId_iterator
|
|
36095
36125
|
|
|
36096
36126
|
this class is similar to T, but does not make default initialization of the fields for best performance
|
|
36097
36127
|
"""
|
|
@@ -36120,7 +36150,7 @@ class NoDefInit_EdgeId(EdgeId):
|
|
|
36120
36150
|
class NoDefInit_FaceId(FaceId):
|
|
36121
36151
|
"""
|
|
36122
36152
|
Generated from: MR::NoDefInit<MR::FaceId>
|
|
36123
|
-
Aliases: Buffer_FaceId_FaceId.const_iterator, Buffer_FaceId.const_reference, Buffer_FaceId_FaceId.const_reference, Buffer_FaceId.const_iterator, Buffer_FaceId_FaceId.
|
|
36153
|
+
Aliases: Buffer_FaceId_FaceId.const_iterator, Buffer_FaceId.const_reference, Buffer_FaceId_FaceId.const_reference, Buffer_FaceId.const_iterator, Buffer_FaceId_FaceId.reference, NoCtor_FaceId.type, Buffer_FaceId.T, Buffer_FaceId_FaceId.T, Buffer_FaceId.reference, Buffer_FaceId_FaceId.iterator, Buffer_FaceId.iterator
|
|
36124
36154
|
|
|
36125
36155
|
this class is similar to T, but does not make default initialization of the fields for best performance
|
|
36126
36156
|
"""
|
|
@@ -36207,7 +36237,7 @@ class NoDefInit_GraphVertId(GraphVertId):
|
|
|
36207
36237
|
class NoDefInit_Id_ICPElemtTag(Id_ICPElemtTag):
|
|
36208
36238
|
"""
|
|
36209
36239
|
Generated from: MR::NoDefInit<MR::Id<MR::ICPElemtTag>>
|
|
36210
|
-
Aliases: Buffer_Id_ICPElemtTag_Id_ICPElemtTag.const_iterator, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.const_reference, std_unique_ptr_NoDefInit_Id_ICPElemtTag_pointer, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.T, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.T,
|
|
36240
|
+
Aliases: Buffer_Id_ICPElemtTag_Id_ICPElemtTag.const_iterator, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.const_reference, std_unique_ptr_NoDefInit_Id_ICPElemtTag_pointer, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.T, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.T, NoCtor_Id_ICPElemtTag.type, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.iterator, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.reference, Buffer_Id_ICPElemtTag_Id_ICPElemtTag.T
|
|
36211
36241
|
|
|
36212
36242
|
this class is similar to T, but does not make default initialization of the fields for best performance
|
|
36213
36243
|
"""
|
|
@@ -36323,7 +36353,7 @@ class NoDefInit_PixelId(PixelId):
|
|
|
36323
36353
|
class NoDefInit_RegionId(RegionId):
|
|
36324
36354
|
"""
|
|
36325
36355
|
Generated from: MR::NoDefInit<MR::RegionId>
|
|
36326
|
-
Aliases: Buffer_RegionId_RegionId.const_reference, Buffer_RegionId_RegionId.const_iterator, Buffer_RegionId_RegionId.iterator, NoCtor_RegionId.type, Buffer_RegionId_RegionId.
|
|
36356
|
+
Aliases: Buffer_RegionId_RegionId.const_reference, Buffer_RegionId_RegionId.const_iterator, Buffer_RegionId_RegionId.iterator, NoCtor_RegionId.type, Buffer_RegionId_RegionId.reference, Buffer_RegionId_RegionId.T
|
|
36327
36357
|
|
|
36328
36358
|
this class is similar to T, but does not make default initialization of the fields for best performance
|
|
36329
36359
|
"""
|
|
@@ -36352,7 +36382,7 @@ class NoDefInit_RegionId(RegionId):
|
|
|
36352
36382
|
class NoDefInit_TextureId(TextureId):
|
|
36353
36383
|
"""
|
|
36354
36384
|
Generated from: MR::NoDefInit<MR::TextureId>
|
|
36355
|
-
Aliases: Buffer_TextureId_TextureId.
|
|
36385
|
+
Aliases: Buffer_TextureId_TextureId.iterator, Buffer_TextureId_TextureId.reference, Buffer_TextureId_TextureId.T, Buffer_TextureId_TextureId.const_reference, NoCtor_TextureId.type, Buffer_TextureId_TextureId.const_iterator
|
|
36356
36386
|
|
|
36357
36387
|
this class is similar to T, but does not make default initialization of the fields for best performance
|
|
36358
36388
|
"""
|
|
@@ -36381,7 +36411,7 @@ class NoDefInit_TextureId(TextureId):
|
|
|
36381
36411
|
class NoDefInit_UndirectedEdgeId(UndirectedEdgeId):
|
|
36382
36412
|
"""
|
|
36383
36413
|
Generated from: MR::NoDefInit<MR::UndirectedEdgeId>
|
|
36384
|
-
Aliases: Buffer_UndirectedEdgeId.iterator, Buffer_UndirectedEdgeId_UndirectedEdgeId.iterator, Buffer_UndirectedEdgeId.reference, NoCtor_UndirectedEdgeId.type, Buffer_UndirectedEdgeId_UndirectedEdgeId.T, Buffer_UndirectedEdgeId.T, Buffer_UndirectedEdgeId.
|
|
36414
|
+
Aliases: Buffer_UndirectedEdgeId.iterator, Buffer_UndirectedEdgeId_UndirectedEdgeId.iterator, Buffer_UndirectedEdgeId.reference, NoCtor_UndirectedEdgeId.type, Buffer_UndirectedEdgeId_UndirectedEdgeId.T, Buffer_UndirectedEdgeId.T, Buffer_UndirectedEdgeId.const_iterator, Buffer_UndirectedEdgeId.const_reference, Buffer_UndirectedEdgeId_UndirectedEdgeId.const_reference, Buffer_UndirectedEdgeId_UndirectedEdgeId.reference, Buffer_UndirectedEdgeId_UndirectedEdgeId.const_iterator
|
|
36385
36415
|
|
|
36386
36416
|
this class is similar to T, but does not make default initialization of the fields for best performance
|
|
36387
36417
|
"""
|
|
@@ -36410,7 +36440,7 @@ class NoDefInit_UndirectedEdgeId(UndirectedEdgeId):
|
|
|
36410
36440
|
class NoDefInit_VertId(VertId):
|
|
36411
36441
|
"""
|
|
36412
36442
|
Generated from: MR::NoDefInit<MR::VertId>
|
|
36413
|
-
Aliases: Buffer_VertId_VertId.const_reference, Buffer_VertId_VertId.iterator, Buffer_VertId.reference, NoCtor_VertId.type, Buffer_VertId.T, Buffer_VertId_VertId.T, Buffer_VertId_VertId.reference, Buffer_VertId.iterator, Buffer_VertId.const_iterator,
|
|
36443
|
+
Aliases: Buffer_VertId_VertId.const_reference, Buffer_VertId_VertId.iterator, Buffer_VertId.reference, NoCtor_VertId.type, Buffer_VertId.T, Buffer_VertId_VertId.T, Buffer_VertId_VertId.reference, Buffer_VertId.iterator, Buffer_VertId.const_iterator, Buffer_VertId_VertId.const_iterator, Buffer_VertId.const_reference
|
|
36414
36444
|
|
|
36415
36445
|
this class is similar to T, but does not make default initialization of the fields for best performance
|
|
36416
36446
|
"""
|
|
@@ -36439,7 +36469,7 @@ class NoDefInit_VertId(VertId):
|
|
|
36439
36469
|
class NoDefInit_VoxelId(VoxelId):
|
|
36440
36470
|
"""
|
|
36441
36471
|
Generated from: MR::NoDefInit<MR::VoxelId>
|
|
36442
|
-
Aliases: std_unique_ptr_NoDefInit_Id_VoxelTag_pointer, Buffer_Id_VoxelTag_Id_VoxelTag_iterator, Buffer_Id_VoxelTag_Id_VoxelTag_reference, NoCtor_Id_VoxelTag_type, Buffer_Id_VoxelTag_Id_VoxelTag_T, NoDefInit_Id_VoxelTag, NoDefInit_Id_VoxelTag, Buffer_Id_VoxelTag_Id_VoxelTag_const_reference,
|
|
36472
|
+
Aliases: std_unique_ptr_NoDefInit_Id_VoxelTag_pointer, Buffer_Id_VoxelTag_Id_VoxelTag_iterator, Buffer_Id_VoxelTag_Id_VoxelTag_reference, NoCtor_Id_VoxelTag_type, NoDefInit_Id_VoxelTag, 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, Buffer_Id_VoxelTag_Id_VoxelTag_T, Buffer_Id_VoxelTag_Id_VoxelTag_const_iterator
|
|
36443
36473
|
|
|
36444
36474
|
this class is similar to T, but does not make default initialization of the fields for best performance
|
|
36445
36475
|
"""
|
|
@@ -36560,6 +36590,11 @@ class NodeBitSet(BitSet):
|
|
|
36560
36590
|
def __init__(self) -> None:
|
|
36561
36591
|
...
|
|
36562
36592
|
@typing.overload
|
|
36593
|
+
def __init__(self, numBits: int, fillValue: bool) -> None:
|
|
36594
|
+
"""
|
|
36595
|
+
creates bitset of given size filled with given value
|
|
36596
|
+
"""
|
|
36597
|
+
@typing.overload
|
|
36563
36598
|
def __init__(self, src: BitSet) -> None:
|
|
36564
36599
|
"""
|
|
36565
36600
|
copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
|
|
@@ -36948,6 +36983,11 @@ class ObjBitSet(BitSet):
|
|
|
36948
36983
|
def __init__(self) -> None:
|
|
36949
36984
|
...
|
|
36950
36985
|
@typing.overload
|
|
36986
|
+
def __init__(self, numBits: int, fillValue: bool) -> None:
|
|
36987
|
+
"""
|
|
36988
|
+
creates bitset of given size filled with given value
|
|
36989
|
+
"""
|
|
36990
|
+
@typing.overload
|
|
36951
36991
|
def __init__(self, src: BitSet) -> None:
|
|
36952
36992
|
"""
|
|
36953
36993
|
copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
|
|
@@ -39243,7 +39283,7 @@ class ObjectTagEventDispatcher:
|
|
|
39243
39283
|
class ObjectVoxels(ObjectMeshHolder):
|
|
39244
39284
|
"""
|
|
39245
39285
|
Generated from: MR::ObjectVoxels
|
|
39246
|
-
Aliases: ChangeGridAction.Obj, ChangVoxelSelectionAction.Obj, ChangeDualMarchingCubesAction.Obj,
|
|
39286
|
+
Aliases: ChangeGridAction.Obj, ChangVoxelSelectionAction.Obj, ChangeDualMarchingCubesAction.Obj, std_shared_ptr_ChangVoxelSelectionAction_Obj, std_shared_ptr_ChangeActiveBoxAction_Obj, std_shared_ptr_ChangeDualMarchingCubesAction_Obj, std_shared_ptr_ChangeIsoAction_Obj, std_shared_ptr_ObjectVoxels, ChangeActiveBoxAction.Obj, std_shared_ptr_ChangeGridAction_Obj, ChangeSurfaceAction.Obj, ChangeIsoAction.Obj, std_shared_ptr_ChangeSurfaceAction_Obj
|
|
39247
39287
|
|
|
39248
39288
|
This class stores information about voxels object
|
|
39249
39289
|
"""
|
|
@@ -41769,6 +41809,11 @@ class PixelBitSet(BitSet):
|
|
|
41769
41809
|
def __init__(self) -> None:
|
|
41770
41810
|
...
|
|
41771
41811
|
@typing.overload
|
|
41812
|
+
def __init__(self, numBits: int, fillValue: bool) -> None:
|
|
41813
|
+
"""
|
|
41814
|
+
creates bitset of given size filled with given value
|
|
41815
|
+
"""
|
|
41816
|
+
@typing.overload
|
|
41772
41817
|
def __init__(self, src: BitSet) -> None:
|
|
41773
41818
|
"""
|
|
41774
41819
|
copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
|
|
@@ -46801,7 +46846,7 @@ class QuadraticForm2d:
|
|
|
46801
46846
|
class QuadraticForm2f:
|
|
46802
46847
|
"""
|
|
46803
46848
|
Generated from: MR::QuadraticForm2f
|
|
46804
|
-
Aliases: Vector_QuadraticForm2f_VertId.
|
|
46849
|
+
Aliases: Vector_QuadraticForm2f_VertId.const_reference, Vector_QuadraticForm2f_VertId.value_type, Vector_QuadraticForm2f_VertId.reference
|
|
46805
46850
|
|
|
46806
46851
|
quadratic form: f = x^T A x + c
|
|
46807
46852
|
"""
|
|
@@ -46920,7 +46965,7 @@ class QuadraticForm3d:
|
|
|
46920
46965
|
class QuadraticForm3f:
|
|
46921
46966
|
"""
|
|
46922
46967
|
Generated from: MR::QuadraticForm3f
|
|
46923
|
-
Aliases: Vector_QuadraticForm3f_VertId.
|
|
46968
|
+
Aliases: Vector_QuadraticForm3f_VertId.value_type, Vector_QuadraticForm3f_VertId.const_reference, Vector_QuadraticForm3f_VertId.reference
|
|
46924
46969
|
|
|
46925
46970
|
quadratic form: f = x^T A x + c
|
|
46926
46971
|
"""
|
|
@@ -47870,6 +47915,11 @@ class RegionBitSet(BitSet):
|
|
|
47870
47915
|
def __init__(self) -> None:
|
|
47871
47916
|
...
|
|
47872
47917
|
@typing.overload
|
|
47918
|
+
def __init__(self, numBits: int, fillValue: bool) -> None:
|
|
47919
|
+
"""
|
|
47920
|
+
creates bitset of given size filled with given value
|
|
47921
|
+
"""
|
|
47922
|
+
@typing.overload
|
|
47873
47923
|
def __init__(self, src: BitSet) -> None:
|
|
47874
47924
|
"""
|
|
47875
47925
|
copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
|
|
@@ -47988,7 +48038,7 @@ class RegionBitSet(BitSet):
|
|
|
47988
48038
|
class RegionId:
|
|
47989
48039
|
"""
|
|
47990
48040
|
Generated from: MR::RegionId
|
|
47991
|
-
Aliases: Vector_RegionId_VertId_const_reference, Vector_RegionId_RegionId.const_reference,
|
|
48041
|
+
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, Vector_RegionId_FaceId_value_type
|
|
47992
48042
|
|
|
47993
48043
|
stores index of some element, it is made as template class to avoid mixing faces, edges and vertices
|
|
47994
48044
|
"""
|
|
@@ -50589,6 +50639,12 @@ class SimpleVolumeMinMax(SimpleVolume, Box1f):
|
|
|
50589
50639
|
represents a box in 3D space subdivided on voxels stored in T;
|
|
50590
50640
|
and stores minimum and maximum values among all valid voxels
|
|
50591
50641
|
"""
|
|
50642
|
+
_offsetof_data: typing.ClassVar[int] = 0
|
|
50643
|
+
_offsetof_dims: typing.ClassVar[int] = 24
|
|
50644
|
+
_offsetof_voxelSize: typing.ClassVar[int] = 36
|
|
50645
|
+
data: Vector_float_VoxelId
|
|
50646
|
+
dims: Vector3i
|
|
50647
|
+
voxelSize: Vector3f
|
|
50592
50648
|
@staticmethod
|
|
50593
50649
|
@typing.overload
|
|
50594
50650
|
def __init__(*args, **kwargs) -> None:
|
|
@@ -50611,6 +50667,8 @@ class SimpleVolumeMinMax(SimpleVolume, Box1f):
|
|
|
50611
50667
|
"""
|
|
50612
50668
|
def __repr__(self) -> str:
|
|
50613
50669
|
...
|
|
50670
|
+
def heapBytes(self) -> int:
|
|
50671
|
+
...
|
|
50614
50672
|
class SimpleVolumeMinMaxU16(SimpleVolumeU16, Box_unsigned_short):
|
|
50615
50673
|
"""
|
|
50616
50674
|
Generated from: MR::SimpleVolumeMinMaxU16
|
|
@@ -50618,6 +50676,12 @@ class SimpleVolumeMinMaxU16(SimpleVolumeU16, Box_unsigned_short):
|
|
|
50618
50676
|
represents a box in 3D space subdivided on voxels stored in T;
|
|
50619
50677
|
and stores minimum and maximum values among all valid voxels
|
|
50620
50678
|
"""
|
|
50679
|
+
_offsetof_data: typing.ClassVar[int] = 0
|
|
50680
|
+
_offsetof_dims: typing.ClassVar[int] = 24
|
|
50681
|
+
_offsetof_voxelSize: typing.ClassVar[int] = 36
|
|
50682
|
+
data: Vector_unsigned_short_VoxelId
|
|
50683
|
+
dims: Vector3i
|
|
50684
|
+
voxelSize: Vector3f
|
|
50621
50685
|
@staticmethod
|
|
50622
50686
|
@typing.overload
|
|
50623
50687
|
def __init__(*args, **kwargs) -> None:
|
|
@@ -50640,6 +50704,8 @@ class SimpleVolumeMinMaxU16(SimpleVolumeU16, Box_unsigned_short):
|
|
|
50640
50704
|
"""
|
|
50641
50705
|
def __repr__(self) -> str:
|
|
50642
50706
|
...
|
|
50707
|
+
def heapBytes(self) -> int:
|
|
50708
|
+
...
|
|
50643
50709
|
class SimpleVolumeU16:
|
|
50644
50710
|
"""
|
|
50645
50711
|
Generated from: MR::SimpleVolumeU16
|
|
@@ -54355,6 +54421,11 @@ class TextureBitSet(BitSet):
|
|
|
54355
54421
|
def __init__(self) -> None:
|
|
54356
54422
|
...
|
|
54357
54423
|
@typing.overload
|
|
54424
|
+
def __init__(self, numBits: int, fillValue: bool) -> None:
|
|
54425
|
+
"""
|
|
54426
|
+
creates bitset of given size filled with given value
|
|
54427
|
+
"""
|
|
54428
|
+
@typing.overload
|
|
54358
54429
|
def __init__(self, src: BitSet) -> None:
|
|
54359
54430
|
"""
|
|
54360
54431
|
copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
|
|
@@ -56280,6 +56351,11 @@ class TypedBitSet_Id_ICPElemtTag(BitSet):
|
|
|
56280
56351
|
def __init__(self) -> None:
|
|
56281
56352
|
...
|
|
56282
56353
|
@typing.overload
|
|
56354
|
+
def __init__(self, numBits: int, fillValue: bool) -> None:
|
|
56355
|
+
"""
|
|
56356
|
+
creates bitset of given size filled with given value
|
|
56357
|
+
"""
|
|
56358
|
+
@typing.overload
|
|
56283
56359
|
def __init__(self, src: BitSet) -> None:
|
|
56284
56360
|
"""
|
|
56285
56361
|
copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
|
|
@@ -56742,6 +56818,11 @@ class UndirectedEdgeBitSet(BitSet):
|
|
|
56742
56818
|
def __init__(self) -> None:
|
|
56743
56819
|
...
|
|
56744
56820
|
@typing.overload
|
|
56821
|
+
def __init__(self, numBits: int, fillValue: bool) -> None:
|
|
56822
|
+
"""
|
|
56823
|
+
creates bitset of given size filled with given value
|
|
56824
|
+
"""
|
|
56825
|
+
@typing.overload
|
|
56745
56826
|
def __init__(self, src: BitSet) -> None:
|
|
56746
56827
|
"""
|
|
56747
56828
|
copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
|
|
@@ -57023,7 +57104,7 @@ class UndirectedEdgeColors:
|
|
|
57023
57104
|
class UndirectedEdgeId:
|
|
57024
57105
|
"""
|
|
57025
57106
|
Generated from: MR::UndirectedEdgeId
|
|
57026
|
-
Aliases: PolylineUndirectedEdgeIterator.value_type, Vector_UndirectedEdgeId_UndirectedEdgeId_reference, Vector_UndirectedEdgeId_UndirectedEdgeId_value_type, UndirectedEdgeIterator.value_type, TypedBitSet_UndirectedEdgeId_IndexType, AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId,
|
|
57107
|
+
Aliases: PolylineUndirectedEdgeIterator.value_type, Vector_UndirectedEdgeId_UndirectedEdgeId_reference, Vector_UndirectedEdgeId_UndirectedEdgeId_value_type, UndirectedEdgeIterator.value_type, TypedBitSet_UndirectedEdgeId_IndexType, AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box2f.LeafId, AABBTreeNode_AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, AABBTreeBase_AABBTreeTraits_UndirectedEdgeTag_Box3f.LeafId, Vector_UndirectedEdgeId_UndirectedEdgeId_const_reference
|
|
57027
57108
|
|
|
57028
57109
|
stores index of some element, it is made as template class to avoid mixing faces, edges and vertices
|
|
57029
57110
|
"""
|
|
@@ -58239,6 +58320,12 @@ class VdbVolume(VoxelsVolume_FloatGrid, Box1f):
|
|
|
58239
58320
|
represents a box in 3D space subdivided on voxels stored in T;
|
|
58240
58321
|
and stores minimum and maximum values among all valid voxels
|
|
58241
58322
|
"""
|
|
58323
|
+
_offsetof_data: typing.ClassVar[int] = 0
|
|
58324
|
+
_offsetof_dims: typing.ClassVar[int] = 16
|
|
58325
|
+
_offsetof_voxelSize: typing.ClassVar[int] = 28
|
|
58326
|
+
data: FloatGrid
|
|
58327
|
+
dims: Vector3i
|
|
58328
|
+
voxelSize: Vector3f
|
|
58242
58329
|
@staticmethod
|
|
58243
58330
|
@typing.overload
|
|
58244
58331
|
def __init__(*args, **kwargs) -> None:
|
|
@@ -58261,6 +58348,8 @@ class VdbVolume(VoxelsVolume_FloatGrid, Box1f):
|
|
|
58261
58348
|
"""
|
|
58262
58349
|
def __repr__(self) -> str:
|
|
58263
58350
|
...
|
|
58351
|
+
def heapBytes(self) -> int:
|
|
58352
|
+
...
|
|
58264
58353
|
class Vector2b:
|
|
58265
58354
|
"""
|
|
58266
58355
|
Generated from: MR::Vector2b
|
|
@@ -58879,7 +58968,7 @@ class Vector3_unsigned_char:
|
|
|
58879
58968
|
class Vector3b:
|
|
58880
58969
|
"""
|
|
58881
58970
|
Generated from: MR::Vector3b
|
|
58882
|
-
Aliases: Matrix3_bool_VectorType, Box_Vector3i_Vb, Box_Vector3i64_Vb,
|
|
58971
|
+
Aliases: Matrix3_bool_VectorType, Box_Vector3i_Vb, Box_Vector3i64_Vb, Box_Vector3d_Vb, Box_Vector3f_Vb
|
|
58883
58972
|
|
|
58884
58973
|
three-dimensional vector
|
|
58885
58974
|
"""
|
|
@@ -59102,7 +59191,7 @@ class Vector3d:
|
|
|
59102
59191
|
class Vector3f:
|
|
59103
59192
|
"""
|
|
59104
59193
|
Generated from: MR::Vector3f
|
|
59105
|
-
Aliases:
|
|
59194
|
+
Aliases: Vector_Vector3f_VertId_value_type, Vector_Vector3f_FaceId_value_type, RigidXf3_float_V, RigidScaleXf3_float_V, Matrix3_float_VectorType, Vector_Vector3f_VertId_reference, Vector_Vector3f_FaceId_const_reference, Vector_Vector3f_VertId_const_reference, Vector_Vector3f_FaceId_reference
|
|
59106
59195
|
"""
|
|
59107
59196
|
_offsetof_x: typing.ClassVar[int] = 0
|
|
59108
59197
|
_offsetof_y: typing.ClassVar[int] = 4
|
|
@@ -59460,7 +59549,7 @@ class Vector3i64:
|
|
|
59460
59549
|
class Vector4_unsigned_char:
|
|
59461
59550
|
"""
|
|
59462
59551
|
Generated from: MR::Vector4<unsigned char>
|
|
59463
|
-
Aliases: DashPattern, Vector4_uint8_t, Matrix4_unsigned_char.VectorType
|
|
59552
|
+
Aliases: DashPattern, Vector4_uint8_t, DashPattern, Matrix4_unsigned_char.VectorType
|
|
59464
59553
|
|
|
59465
59554
|
four-dimensional vector
|
|
59466
59555
|
"""
|
|
@@ -67732,6 +67821,11 @@ class VertBitSet(BitSet):
|
|
|
67732
67821
|
def __init__(self) -> None:
|
|
67733
67822
|
...
|
|
67734
67823
|
@typing.overload
|
|
67824
|
+
def __init__(self, numBits: int, fillValue: bool) -> None:
|
|
67825
|
+
"""
|
|
67826
|
+
creates bitset of given size filled with given value
|
|
67827
|
+
"""
|
|
67828
|
+
@typing.overload
|
|
67735
67829
|
def __init__(self, src: BitSet) -> None:
|
|
67736
67830
|
"""
|
|
67737
67831
|
copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
|
|
@@ -70281,6 +70375,11 @@ class VoxelBitSet(BitSet):
|
|
|
70281
70375
|
def __init__(self) -> None:
|
|
70282
70376
|
...
|
|
70283
70377
|
@typing.overload
|
|
70378
|
+
def __init__(self, numBits: int, fillValue: bool) -> None:
|
|
70379
|
+
"""
|
|
70380
|
+
creates bitset of given size filled with given value
|
|
70381
|
+
"""
|
|
70382
|
+
@typing.overload
|
|
70284
70383
|
def __init__(self, src: BitSet) -> None:
|
|
70285
70384
|
"""
|
|
70286
70385
|
copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>)
|
|
@@ -70439,7 +70538,7 @@ class VoxelFilterType:
|
|
|
70439
70538
|
class VoxelId:
|
|
70440
70539
|
"""
|
|
70441
70540
|
Generated from: MR::VoxelId
|
|
70442
|
-
Aliases: Vector_Id_VoxelTag_Id_VoxelTag_const_reference,
|
|
70541
|
+
Aliases: Vector_Id_VoxelTag_Id_VoxelTag_const_reference, Vector_Id_VoxelTag_FaceId_reference, Vector_Id_VoxelTag_FaceId_const_reference, Id_VoxelTag, Id_VoxelTag, Id_VoxelTag, std_vector_Id_VoxelTag_reference, Id_VoxelTag, Vector_Id_VoxelTag_Id_VoxelTag_reference, Vector_Id_VoxelTag_Id_VoxelTag_value_type, std_vector_Id_VoxelTag_const_reference, Vector_Id_VoxelTag_FaceId_value_type, TypedBitSet_Id_VoxelTag_IndexType, std_vector_Id_VoxelTag_value_type
|
|
70443
70542
|
"""
|
|
70444
70543
|
__hash__: typing.ClassVar[None] = None
|
|
70445
70544
|
@staticmethod
|
|
@@ -71471,12 +71570,16 @@ class VoxelsVolumeAccessor_SimpleVolumeMinMax(VoxelsVolumeAccessor_SimpleVolume)
|
|
|
71471
71570
|
|
|
71472
71571
|
VoxelsVolumeAccessor specialization for simple volumes with min/max
|
|
71473
71572
|
"""
|
|
71573
|
+
cacheEffective: typing.ClassVar[bool] = False
|
|
71474
71574
|
VolumeType = SimpleVolumeMinMax
|
|
71475
71575
|
@staticmethod
|
|
71476
71576
|
@typing.overload
|
|
71477
71577
|
def __init__(*args, **kwargs) -> None:
|
|
71478
71578
|
...
|
|
71479
71579
|
@typing.overload
|
|
71580
|
+
def __init__(self, volume: SimpleVolume) -> None:
|
|
71581
|
+
...
|
|
71582
|
+
@typing.overload
|
|
71480
71583
|
def __init__(self, arg0: VoxelsVolumeAccessor_SimpleVolumeMinMax) -> None:
|
|
71481
71584
|
"""
|
|
71482
71585
|
Implicit copy constructor.
|
|
@@ -71656,7 +71759,7 @@ class WatershedGraph:
|
|
|
71656
71759
|
class BasinInfo:
|
|
71657
71760
|
"""
|
|
71658
71761
|
Generated from: MR::WatershedGraph::BasinInfo
|
|
71659
|
-
Aliases:
|
|
71762
|
+
Aliases: Vector_WatershedGraph_BasinInfo_GraphVertId.reference, Vector_WatershedGraph_BasinInfo_GraphVertId.value_type, std_vector_WatershedGraph_BasinInfo_reference, std_vector_WatershedGraph_BasinInfo_value_type, std_vector_WatershedGraph_BasinInfo_const_reference, Vector_WatershedGraph_BasinInfo_GraphVertId.const_reference
|
|
71660
71763
|
|
|
71661
71764
|
associated with each vertex in graph
|
|
71662
71765
|
"""
|
|
@@ -74712,7 +74815,7 @@ class int_output:
|
|
|
74712
74815
|
"""
|
|
74713
74816
|
class phmap_flat_hash_map_Id_EdgeTag_Id_EdgeTag:
|
|
74714
74817
|
"""
|
|
74715
|
-
Aliases: MapOrHashMap_Id_EdgeTag_Id_EdgeTag_Hash, HashMap_Id_EdgeTag_Id_EdgeTag, MapOrHashMap_Id_EdgeTag_Id_EdgeTag_Hash, HashMap_TypedBitSet_Id_EdgeTag_IndexType_TypedBitSet_Id_EdgeTag_IndexType, MapOrHashMap_Id_EdgeTag_Id_EdgeTag_Hash, phmap_flat_hash_map_EdgeId_EdgeId,
|
|
74818
|
+
Aliases: MapOrHashMap_Id_EdgeTag_Id_EdgeTag_Hash, HashMap_Id_EdgeTag_Id_EdgeTag, MapOrHashMap_Id_EdgeTag_Id_EdgeTag_Hash, HashMap_TypedBitSet_Id_EdgeTag_IndexType_TypedBitSet_Id_EdgeTag_IndexType, MapOrHashMap_Id_EdgeTag_Id_EdgeTag_Hash, phmap_flat_hash_map_EdgeId_EdgeId, EdgeHashMap, HashMap_EdgeId_EdgeId
|
|
74716
74819
|
"""
|
|
74717
74820
|
def __bool__(self) -> bool:
|
|
74718
74821
|
"""
|
|
@@ -75613,7 +75716,7 @@ class std_array_BooleanResultMapper_Maps_2:
|
|
|
75613
75716
|
...
|
|
75614
75717
|
class std_array_Id_VertTag_2:
|
|
75615
75718
|
"""
|
|
75616
|
-
Aliases:
|
|
75719
|
+
Aliases: Vector_std_array_VertId_2_UndirectedEdgeId_value_type, Vector_std_array_VertId_2_UndirectedEdgeId_const_reference, TwoVertIds, Vector_std_array_VertId_2_UndirectedEdgeId_reference, std_array_VertId_2
|
|
75617
75720
|
"""
|
|
75618
75721
|
def __getitem__(self, arg0: int) -> VertId:
|
|
75619
75722
|
...
|
|
@@ -75808,7 +75911,7 @@ class std_array_Vector3_double_3:
|
|
|
75808
75911
|
...
|
|
75809
75912
|
class std_array_Vector3_float_3:
|
|
75810
75913
|
"""
|
|
75811
|
-
Aliases: Vector_std_array_Vector3f_3_FaceId.
|
|
75914
|
+
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
|
|
75812
75915
|
"""
|
|
75813
75916
|
def __getitem__(self, arg0: int) -> Vector3f:
|
|
75814
75917
|
...
|
|
@@ -76366,7 +76469,7 @@ class std_variant_PdfBuildinFont_std___fs_filesystem_path:
|
|
|
76366
76469
|
"""
|
|
76367
76470
|
class std_variant_Polynomial_double_0ul_Polynomial_double_1ul_Polynomial_double_2ul_Polynomial_double_3ul_Polynomial_double_4ul_Polynomial_double_5ul_Polynomial_double_6ul:
|
|
76368
76471
|
"""
|
|
76369
|
-
Aliases:
|
|
76472
|
+
Aliases: std_variant_Polynomial_double_0_Polynomial_double_1_Polynomial_double_2_Polynomial_double_3_Polynomial_double_4_Polynomial_double_5_Polynomial_double_6, Polynomialx_double
|
|
76370
76473
|
"""
|
|
76371
76474
|
@typing.overload
|
|
76372
76475
|
def __init__(self) -> None:
|
|
@@ -77907,7 +78010,7 @@ class std_vector_DistanceMap:
|
|
|
77907
78010
|
...
|
|
77908
78011
|
class std_vector_EdgePoint:
|
|
77909
78012
|
"""
|
|
77910
|
-
Aliases:
|
|
78013
|
+
Aliases: IsoLine, std_vector_std_vector_EdgePoint_const_reference, Vector_std_vector_EdgePoint_VertId.value_type, IsoLine, PlaneSection, SurfacePath, Vector_std_vector_EdgePoint_VertId.const_reference, std_vector_MeshEdgePoint, std_vector_std_vector_EdgePoint_value_type, SurfacePath, Vector_std_vector_EdgePoint_VertId.reference, std_vector_MeshEdgePoint, SurfacePath, std_vector_std_vector_EdgePoint_reference, PlaneSection
|
|
77911
78014
|
"""
|
|
77912
78015
|
__hash__: typing.ClassVar[None] = None
|
|
77913
78016
|
element_type_byte_size: typing.ClassVar[int] = 8
|
|
@@ -96093,14 +96196,14 @@ def heapBytes(vec: std_vector_float) -> int:
|
|
|
96093
96196
|
returns the amount of memory given vector occupies on heap
|
|
96094
96197
|
"""
|
|
96095
96198
|
@typing.overload
|
|
96096
|
-
def heapBytes(
|
|
96199
|
+
def heapBytes(vec: std_vector_unsigned_long) -> int:
|
|
96097
96200
|
"""
|
|
96098
|
-
returns the amount of
|
|
96201
|
+
returns the amount of memory given vector occupies on heap
|
|
96099
96202
|
"""
|
|
96100
96203
|
@typing.overload
|
|
96101
|
-
def heapBytes(
|
|
96204
|
+
def heapBytes(grid: FloatGrid) -> int:
|
|
96102
96205
|
"""
|
|
96103
|
-
returns the amount of memory
|
|
96206
|
+
returns the amount of heap memory occupied by grid
|
|
96104
96207
|
"""
|
|
96105
96208
|
@typing.overload
|
|
96106
96209
|
def heapBytes(vec: Vector_MeshTexture_TextureId) -> int:
|
meshlib/mrmeshpy.so
CHANGED
|
Binary file
|
|
@@ -7,23 +7,23 @@ meshlib/mrmeshnumpy.pyi,sha256=jsvARxVLM1bNQtACjO8uQbz9j3IUTNgQZfvBALs4JG4,4466
|
|
|
7
7
|
meshlib/__init__.py,sha256=wvHbg87n5KmBeXJ3KjzqRR20SEdG_hgcpUDW_iNMrXY,457
|
|
8
8
|
meshlib/libpybind11nonlimitedapi_meshlib_3.8.dylib,sha256=Cj2ndd-gOdVbPxN5ih9vDIm1cE_wAJ7JLE2oekj5I6U,239600
|
|
9
9
|
meshlib/mrcudapy.so,sha256=VqtyyOUBNK3yu2Rz7RKF_qliHuKDfDQmOs0Bi6a41k4,337120
|
|
10
|
-
meshlib/mrmeshpy.pyi,sha256=
|
|
10
|
+
meshlib/mrmeshpy.pyi,sha256=JhD25eW4SukZRlK-WVZtEcTncHsE3jNnRJgYWN7NmhI,3437560
|
|
11
11
|
meshlib/mrmeshnumpy.so,sha256=0bFo7SBN8-GqdI7ndNZW7kixRGHscXsTvkbfK2VR9o4,335952
|
|
12
12
|
meshlib/mrcudapy.pyi,sha256=6YGb_WcPqj_WYfdDiA-OlylU6N1BnTAJZ6d-OfH0rEU,537
|
|
13
13
|
meshlib/libpybind11nonlimitedapi_meshlib_3.13.dylib,sha256=P2y18oehgcwRa5f9KlBnxpIaPh__etV46SQcympNmbk,240912
|
|
14
14
|
meshlib/libpybind11nonlimitedapi_meshlib_3.11.dylib,sha256=cHabf10nBLuwSPP3HZa9xJJqXfMltN0i66kMyPU6vGc,240656
|
|
15
15
|
meshlib/mrviewerpy.so,sha256=ZVsM_cfiGrVt3eXN2NPaxswMnlDh3XJXPn_cPl9BfB8,1065280
|
|
16
|
-
meshlib/mrmeshpy.so,sha256=
|
|
16
|
+
meshlib/mrmeshpy.so,sha256=GcLGCZLEatW5GpI6hKVKWllZGhRFPsUfNTkU8Nlkv18,115998544
|
|
17
17
|
meshlib/libpybind11nonlimitedapi_meshlib_3.10.dylib,sha256=bqt-1iiAsxRZt3mmBnUGFlM97Ukeh5dM9Dpx7L2hiQo,239968
|
|
18
18
|
meshlib/libpybind11nonlimitedapi_meshlib_3.12.dylib,sha256=1pUEYgEPxCP8w0HxOO6KI5B0_Dp1GWyQOPy3wf6YaI4,240752
|
|
19
19
|
meshlib/mrviewerpy.pyi,sha256=XWJWMGY7nIfDi8bjWhoslCdHuStBfZPDZmqkGWOuyAI,20364
|
|
20
20
|
meshlib/.dylibs/libOpenCTM.dylib,sha256=doNJ-PF--9GYt3BSNLNO6hh0CQTnrzo7CpSbuLueNZM,142848
|
|
21
21
|
meshlib/.dylibs/libTKLCAF.7.9.1.dylib,sha256=9Zty1Ko7qQQnp0RJ2lAl43VnMDecW4zZ7aKeSa35vh8,689920
|
|
22
|
-
meshlib/.dylibs/libMRIOExtras.dylib,sha256=
|
|
22
|
+
meshlib/.dylibs/libMRIOExtras.dylib,sha256=TtTXHMst6xTGUKBkHJKVsZOeK09u7hYmoRcAjQf1emk,1520288
|
|
23
23
|
meshlib/.dylibs/libimgui.dylib,sha256=kI1aO9p-eG9VH9MhBPIlvziPlG_Zqwrbau9ClZ5XxY0,943600
|
|
24
24
|
meshlib/.dylibs/libTKernel.7.9.1.dylib,sha256=2X_tXJo-WDvUcKDWwOzSYgfx7wbHX6KKzlTb0XWEX7M,1612192
|
|
25
25
|
meshlib/.dylibs/libpybind11nonlimitedapi_stubs.dylib,sha256=pH2ann2vO48UYaf3u4KNsrfU9sRVrm6Sdv3hWRbC8ZE,102480
|
|
26
|
-
meshlib/.dylibs/libMRViewer.dylib,sha256
|
|
26
|
+
meshlib/.dylibs/libMRViewer.dylib,sha256=-ocAz1GStdupIuK4CusPgdAZEcG3i1Eyw6m7_JCVIEA,7212336
|
|
27
27
|
meshlib/.dylibs/liblazperf.dylib,sha256=vDJhofsvplZHLPhdwdnQujVL4sHjxCsp9QCeJrCCDQg,323392
|
|
28
28
|
meshlib/.dylibs/libjson-c.5.4.0.dylib,sha256=BcjnOQlNdYRCjnaLVyq7m7hPyJ9gu81Q-aSQXY2hPCU,114208
|
|
29
29
|
meshlib/.dylibs/libTKCAF.7.9.1.dylib,sha256=4f3rtqYsD2rWwyprBjoQFwMpwupSPtkdWmD1VdI8RZA,460432
|
|
@@ -44,7 +44,7 @@ meshlib/.dylibs/libTKXSBase.7.9.1.dylib,sha256=ex7zPirIKUd5Qr1OFP1TWklBRYDEHuC6F
|
|
|
44
44
|
meshlib/.dylibs/libpng16.16.dylib,sha256=U2T4sX-nq2jeEGUn7vOOKNCtxF2jy6ESydy1JjtLceM,209392
|
|
45
45
|
meshlib/.dylibs/libTKDE.7.9.1.dylib,sha256=KmJDJa910nEGzRTIdyohlHTy_V1qXlcYvR7--fHszxQ,165520
|
|
46
46
|
meshlib/.dylibs/libicuuc.77.1.dylib,sha256=71el1xGP9chHTwc5zYCLxHcTmrXzNIRF-RyqTsHpY0Y,1841072
|
|
47
|
-
meshlib/.dylibs/libssl.3.dylib,sha256=
|
|
47
|
+
meshlib/.dylibs/libssl.3.dylib,sha256=kmnILCmWjJojkLiOF_dZ2f7x6a6OemNgPsJF6--ym-0,883568
|
|
48
48
|
meshlib/.dylibs/libfmt.11.2.0.dylib,sha256=Ato6CBuh2bLIMijzalehPrpOI0747qQwauPFxz3bEZY,173424
|
|
49
49
|
meshlib/.dylibs/libTKV3d.7.9.1.dylib,sha256=zsI85hAqxNfY3kTI2cFOkURfR3Vi1hp5K5BExHlB47k,2243264
|
|
50
50
|
meshlib/.dylibs/libTKMesh.7.9.1.dylib,sha256=WHxOIlRW1msonc8LoCV_8Bopq3tPBnhJXhQ8xEGBUro,607088
|
|
@@ -55,7 +55,7 @@ meshlib/.dylibs/libTKMath.7.9.1.dylib,sha256=3b3JkmdlCF9n55AHXCQdo5lZ7fCW7gry2W3
|
|
|
55
55
|
meshlib/.dylibs/libgdcmMSFF.3.2.2.dylib,sha256=GMufKagJy5NQXWVK8jSYlR1vwxjbn-Kb5Egg3bIdnEI,2208288
|
|
56
56
|
meshlib/.dylibs/libTKShHealing.7.9.1.dylib,sha256=9Bm-zEiM_c3BQLwXdP4ekPgHqhpIQzZcSde70iixsvc,1874624
|
|
57
57
|
meshlib/.dylibs/libfreetype.6.dylib,sha256=po2JCr_NfzFT2cbXvSt488S4rXi0iEdYteC8E0CtrzE,641936
|
|
58
|
-
meshlib/.dylibs/libcrypto.3.dylib,sha256=
|
|
58
|
+
meshlib/.dylibs/libcrypto.3.dylib,sha256=GBDSFczqhs7SKIW467n9HHjA52UFy_YGWh7K12GtF8Q,4836048
|
|
59
59
|
meshlib/.dylibs/libcharls.2.4.2.dylib,sha256=aBKRwB7_73zvw_w-JzRUdlKKmQA2SpPu0mqYvWDqyeY,322672
|
|
60
60
|
meshlib/.dylibs/libgdcmIOD.3.2.2.dylib,sha256=pQmScK8JEAtG1YlO0VwIlq9CcAtWazsP5665fjOrFVs,141936
|
|
61
61
|
meshlib/.dylibs/libboost_regex.dylib,sha256=NYOARCwafqOBUDgQ5aUZ3G6WS4l0XluT8_-ULeKxzn8,400416
|
|
@@ -88,7 +88,7 @@ meshlib/.dylibs/libTKGeomAlgo.7.9.1.dylib,sha256=aVzI7ukuqD0TBRqhVJhfer-quOV4R-H
|
|
|
88
88
|
meshlib/.dylibs/libcpr.1.12.0.dylib,sha256=WFR-qH-YTeZprfh4fTCTwcISpbXiko_tBWfEw15AqCc,375328
|
|
89
89
|
meshlib/.dylibs/libTKBRep.7.9.1.dylib,sha256=EzoM0yAnhNvGtHOkPzXRceiqYSWW5bqfc3stvQ9dFFg,851168
|
|
90
90
|
meshlib/.dylibs/libTKXCAF.7.9.1.dylib,sha256=14dGG4yXj3OulECHEUqXZSqUo3jzwnu6A6T0HMNcMbY,713216
|
|
91
|
-
meshlib/.dylibs/libMRMesh.dylib,sha256=
|
|
91
|
+
meshlib/.dylibs/libMRMesh.dylib,sha256=B22cIlKGaG-l4uNSpaQoH1yiQLuQR15ShAa_JLheqCg,10778880
|
|
92
92
|
meshlib/.dylibs/libtiff.6.dylib,sha256=eE8CXAt2JYxcIisLHDiK1bR2zfAM8JLH_P4Jh3T7pC4,526816
|
|
93
93
|
meshlib/.dylibs/libicui18n.77.1.dylib,sha256=juJ85QOSrLImyDGiQ1gagK0ltqJxTtQlW1Glb8dNoY8,3174032
|
|
94
94
|
meshlib/.dylibs/libzstd.1.5.7.dylib,sha256=KyLXL4E5xW84nR9dJOg198dk6onvwnUmzJiu5FNmyvk,670240
|
|
@@ -151,8 +151,8 @@ meshlib/resource/object_icons/X3/DistanceMeasurementObject.png,sha256=9_O6g6KW96
|
|
|
151
151
|
meshlib/resource/object_icons/X3/ObjectGcode.png,sha256=Bnh_Vq1N1wNCbQiqpYDJe6sjxhDR3hIxUr7Ke8ykYzY,1315
|
|
152
152
|
meshlib/resource/object_icons/X3/ObjectLabel.png,sha256=l5QzgpDV3lfm_mHKk7KSSHICKgPH9-pcSckBvxx24e0,700
|
|
153
153
|
meshlib/resource/object_icons/X3/SphereObject.png,sha256=eEi3PmyVvWwwtqENOHMIKJ-W_KGiNc0O7MiWwWIyTtg,1954
|
|
154
|
-
meshlib-3.0.8.
|
|
155
|
-
meshlib-3.0.8.
|
|
156
|
-
meshlib-3.0.8.
|
|
157
|
-
meshlib-3.0.8.
|
|
158
|
-
meshlib-3.0.8.
|
|
154
|
+
meshlib-3.0.8.247.dist-info/RECORD,,
|
|
155
|
+
meshlib-3.0.8.247.dist-info/WHEEL,sha256=eIK4-Hcup9T6L_muoKGu7CXsMfCjAz4jlwXQBM60DmA,275
|
|
156
|
+
meshlib-3.0.8.247.dist-info/top_level.txt,sha256=qxFkGYDQ1Pc6TMlvS0PU9oUjvaFMs97gWbPYzzJxqiM,8
|
|
157
|
+
meshlib-3.0.8.247.dist-info/METADATA,sha256=fGRG__L92dyk9MvKN2Uf2HE6DpioqIyCy5HaVzrDiBQ,17201
|
|
158
|
+
meshlib-3.0.8.247.dist-info/licenses/LICENSE,sha256=sQZbvhjgrgYxqoOJNpBjj0mcH_hEhSeyj6eM9j1NUP8,7665
|
|
File without changes
|
|
File without changes
|
|
File without changes
|