topologicpy 0.8.33__py3-none-any.whl → 0.8.36__py3-none-any.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.
- topologicpy/BVH.py +4 -4
- topologicpy/CSG.py +5 -5
- topologicpy/Cell.py +17 -17
- topologicpy/CellComplex.py +3 -188
- topologicpy/Cluster.py +2 -2
- topologicpy/Dictionary.py +121 -2
- topologicpy/Edge.py +14 -14
- topologicpy/Face.py +31 -31
- topologicpy/Graph.py +105 -65
- topologicpy/Helper.py +56 -4
- topologicpy/Matrix.py +3 -3
- topologicpy/Neo4j.py +1 -1
- topologicpy/Plotly.py +29 -7
- topologicpy/ShapeGrammar.py +7 -7
- topologicpy/Shell.py +123 -96
- topologicpy/Topology.py +231 -46
- topologicpy/Vector.py +5 -5
- topologicpy/Vertex.py +6 -6
- topologicpy/Wire.py +21 -21
- topologicpy/version.py +1 -1
- {topologicpy-0.8.33.dist-info → topologicpy-0.8.36.dist-info}/METADATA +1 -1
- topologicpy-0.8.36.dist-info/RECORD +38 -0
- topologicpy-0.8.33.dist-info/RECORD +0 -38
- {topologicpy-0.8.33.dist-info → topologicpy-0.8.36.dist-info}/WHEEL +0 -0
- {topologicpy-0.8.33.dist-info → topologicpy-0.8.36.dist-info}/licenses/LICENSE +0 -0
- {topologicpy-0.8.33.dist-info → topologicpy-0.8.36.dist-info}/top_level.txt +0 -0
topologicpy/Edge.py
CHANGED
@@ -135,7 +135,7 @@ class Edge():
|
|
135
135
|
tolerance : float , optional
|
136
136
|
The desired tolerance to decide if an Edge can be created. The default is 0.0001.
|
137
137
|
silent : bool , optional
|
138
|
-
If set to True,
|
138
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
139
139
|
|
140
140
|
Returns
|
141
141
|
-------
|
@@ -296,7 +296,7 @@ class Edge():
|
|
296
296
|
tolerance : float , optional
|
297
297
|
The desired tolerance to decide if an Edge can be created. The default is 0.0001.
|
298
298
|
silent : bool , optional
|
299
|
-
If set to True,
|
299
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
300
300
|
|
301
301
|
Returns
|
302
302
|
-------
|
@@ -364,7 +364,7 @@ class Edge():
|
|
364
364
|
tolerance : float , optional
|
365
365
|
The desired tolerance to decide if an edge can be created. The default is 0.0001.
|
366
366
|
silent : bool , optional
|
367
|
-
If set to True,
|
367
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
368
368
|
|
369
369
|
Returns
|
370
370
|
-------
|
@@ -404,7 +404,7 @@ class Edge():
|
|
404
404
|
tolerance : float , optional
|
405
405
|
The desired tolerance to decide if an edge can be created. The default is 0.0001.
|
406
406
|
silent : bool , optional
|
407
|
-
If set to True,
|
407
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
408
408
|
|
409
409
|
Returns
|
410
410
|
-------
|
@@ -498,7 +498,7 @@ class Edge():
|
|
498
498
|
tolerance : float , optional
|
499
499
|
The desired tolerance. The default is 0.0001.
|
500
500
|
silent : bool , optional
|
501
|
-
If set to True,
|
501
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
502
502
|
|
503
503
|
Returns
|
504
504
|
-------
|
@@ -657,7 +657,7 @@ class Edge():
|
|
657
657
|
tolerance : float , optional
|
658
658
|
The desired tolerance. The default is 0.0001.
|
659
659
|
silent : bool , optional
|
660
|
-
If set to True,
|
660
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
661
661
|
|
662
662
|
Returns
|
663
663
|
-------
|
@@ -702,7 +702,7 @@ class Edge():
|
|
702
702
|
tolerance : float , optional
|
703
703
|
The desired tolerance. The default is 0.0001.
|
704
704
|
silent : bool , optional
|
705
|
-
If set to True,
|
705
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
706
706
|
|
707
707
|
Returns
|
708
708
|
-------
|
@@ -856,7 +856,7 @@ class Edge():
|
|
856
856
|
edgeB : topologic_core.Edge
|
857
857
|
The second input edge.
|
858
858
|
silent : bool , optional
|
859
|
-
If set to True,
|
859
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
860
860
|
mantissa : int , optional
|
861
861
|
The desired length of the mantissa. The default is 6.
|
862
862
|
|
@@ -1255,7 +1255,7 @@ class Edge():
|
|
1255
1255
|
tolerance : float , optional
|
1256
1256
|
The desired tolerance. The default is 0.0001.
|
1257
1257
|
silent : bool , optional
|
1258
|
-
If set to True,
|
1258
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1259
1259
|
|
1260
1260
|
Returns
|
1261
1261
|
-------
|
@@ -1361,7 +1361,7 @@ class Edge():
|
|
1361
1361
|
tolerance : float , optional
|
1362
1362
|
The desired tolerance. The default is 0.0001.
|
1363
1363
|
silent : bool , optional
|
1364
|
-
If set to True,
|
1364
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1365
1365
|
|
1366
1366
|
Returns
|
1367
1367
|
-------
|
@@ -1397,7 +1397,7 @@ class Edge():
|
|
1397
1397
|
mantissa : int , optional
|
1398
1398
|
The desired length of the mantissa. The default is 6.
|
1399
1399
|
silent : bool , optional
|
1400
|
-
If set to True,
|
1400
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1401
1401
|
|
1402
1402
|
Returns
|
1403
1403
|
-------
|
@@ -1434,7 +1434,7 @@ class Edge():
|
|
1434
1434
|
tolerance : float , optional
|
1435
1435
|
The desired tolerance. The default is 0.0001.
|
1436
1436
|
silent : bool , optional
|
1437
|
-
If set to True,
|
1437
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1438
1438
|
|
1439
1439
|
Returns
|
1440
1440
|
-------
|
@@ -1530,7 +1530,7 @@ class Edge():
|
|
1530
1530
|
tolerance : float , optional
|
1531
1531
|
The desired tolerance. The default is 0.0001.
|
1532
1532
|
silent : bool , optional
|
1533
|
-
If set to True,
|
1533
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1534
1534
|
|
1535
1535
|
Returns
|
1536
1536
|
-------
|
@@ -1578,7 +1578,7 @@ class Edge():
|
|
1578
1578
|
tolerance : float , optional
|
1579
1579
|
The desired tolerance. The default is 0.0001.
|
1580
1580
|
silent : bool , optional
|
1581
|
-
If set to True,
|
1581
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1582
1582
|
|
1583
1583
|
Returns
|
1584
1584
|
-------
|
topologicpy/Face.py
CHANGED
@@ -212,7 +212,7 @@ class Face():
|
|
212
212
|
tolerance : float , optional
|
213
213
|
The desired tolerance. The default is 0.0001.
|
214
214
|
silent : bool , optional
|
215
|
-
If set to True,
|
215
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
216
216
|
|
217
217
|
Returns
|
218
218
|
-------
|
@@ -256,7 +256,7 @@ class Face():
|
|
256
256
|
tolerance : float , optional
|
257
257
|
The desired tolerance. The default is 0.0001.
|
258
258
|
silent : bool , optional
|
259
|
-
If set to True,
|
259
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
260
260
|
|
261
261
|
Returns
|
262
262
|
-------
|
@@ -315,7 +315,7 @@ class Face():
|
|
315
315
|
tolerance : float , optional
|
316
316
|
The desired tolerance. The default is 0.0001.
|
317
317
|
silent : bool , optional
|
318
|
-
If set to True,
|
318
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
319
319
|
numWorkers : int , optional
|
320
320
|
Number of workers run in parallel to process. If you set it to 1, no parallel processing will take place.
|
321
321
|
The default is None which causes the algorithm to use twice the number of cpu cores in the host computer.
|
@@ -444,7 +444,7 @@ class Face():
|
|
444
444
|
tolerance : float , optional
|
445
445
|
The desired tolerance. The default is 0.0001.
|
446
446
|
silent : bool , optional
|
447
|
-
If set to True,
|
447
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
448
448
|
numWorkers : int , optional
|
449
449
|
Number of workers run in parallel to process. If you set it to 1, no parallel processing will take place.
|
450
450
|
The default is None which causes the algorithm to use twice the number of cpu cores in the host computer.
|
@@ -572,7 +572,7 @@ class Face():
|
|
572
572
|
tolerance : float , optional
|
573
573
|
The desired tolerance. The default is 0.0001.
|
574
574
|
silent : bool , optional
|
575
|
-
If set to True,
|
575
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
576
576
|
|
577
577
|
|
578
578
|
Returns
|
@@ -693,7 +693,7 @@ class Face():
|
|
693
693
|
tolerance : float , optional
|
694
694
|
The desired tolerance. The default is 0.0001.
|
695
695
|
silent : bool , optional
|
696
|
-
If set to True,
|
696
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
697
697
|
|
698
698
|
Returns
|
699
699
|
-------
|
@@ -756,7 +756,7 @@ class Face():
|
|
756
756
|
tolerance : float , optional
|
757
757
|
The desired tolerance. The default is 0.0001.
|
758
758
|
silent : bool , optional
|
759
|
-
If set to True,
|
759
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
760
760
|
|
761
761
|
Returns
|
762
762
|
-------
|
@@ -805,7 +805,7 @@ class Face():
|
|
805
805
|
tolerance : float , optional
|
806
806
|
The desired tolerance. The default is 0.0001.
|
807
807
|
silent : bool , optional
|
808
|
-
If set to True,
|
808
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
809
809
|
|
810
810
|
Returns
|
811
811
|
-------
|
@@ -838,7 +838,7 @@ class Face():
|
|
838
838
|
tolerance : float , optional
|
839
839
|
The desired tolerance. The default is 0.0001.
|
840
840
|
silent : bool , optional
|
841
|
-
If set to True,
|
841
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
842
842
|
|
843
843
|
Returns
|
844
844
|
-------
|
@@ -932,7 +932,7 @@ class Face():
|
|
932
932
|
tolerance : float , optional
|
933
933
|
The desired tolerance. The default is 0.0001.
|
934
934
|
silent : bool , optional
|
935
|
-
If set to True,
|
935
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
936
936
|
|
937
937
|
Returns
|
938
938
|
-------
|
@@ -975,7 +975,7 @@ class Face():
|
|
975
975
|
tolerance : float , optional
|
976
976
|
The desired tolerance. The default is 0.0001.
|
977
977
|
silent : bool , optional
|
978
|
-
If set to True,
|
978
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
979
979
|
|
980
980
|
Returns
|
981
981
|
-------
|
@@ -1025,7 +1025,7 @@ class Face():
|
|
1025
1025
|
tolerance : float , optional
|
1026
1026
|
The desired tolerance. The default is 0.0001.
|
1027
1027
|
silent : bool , optional
|
1028
|
-
If set to True,
|
1028
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1029
1029
|
|
1030
1030
|
Returns
|
1031
1031
|
-------
|
@@ -1221,7 +1221,7 @@ class Face():
|
|
1221
1221
|
tolerance : float , optional
|
1222
1222
|
The desired tolerance. The default is 0.0001.
|
1223
1223
|
silent : bool , optional
|
1224
|
-
If set to True,
|
1224
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1225
1225
|
|
1226
1226
|
Returns
|
1227
1227
|
-------
|
@@ -1374,7 +1374,7 @@ class Face():
|
|
1374
1374
|
tolerance : float , optional
|
1375
1375
|
The desired tolerance. The default is 0.0001.
|
1376
1376
|
silent : bool , optional
|
1377
|
-
If set to True,
|
1377
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1378
1378
|
|
1379
1379
|
Returns
|
1380
1380
|
-------
|
@@ -1624,7 +1624,7 @@ class Face():
|
|
1624
1624
|
face : topologic_core.Face
|
1625
1625
|
The input face.
|
1626
1626
|
silent : bool , optional
|
1627
|
-
If set to True,
|
1627
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1628
1628
|
|
1629
1629
|
Returns
|
1630
1630
|
-------
|
@@ -1701,7 +1701,7 @@ class Face():
|
|
1701
1701
|
tolerance : float , optional
|
1702
1702
|
The desired tolerance. The default is 0.0001.
|
1703
1703
|
silent : bool , optional
|
1704
|
-
If set to True,
|
1704
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1705
1705
|
|
1706
1706
|
Returns
|
1707
1707
|
-------
|
@@ -1755,7 +1755,7 @@ class Face():
|
|
1755
1755
|
tolerance : float , optional
|
1756
1756
|
The desired tolerance. The default is 0.0001.
|
1757
1757
|
silent : bool , optional
|
1758
|
-
If set to True,
|
1758
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1759
1759
|
|
1760
1760
|
Returns
|
1761
1761
|
-------
|
@@ -1864,7 +1864,7 @@ class Face():
|
|
1864
1864
|
tolerance : float , optional
|
1865
1865
|
The desired tolerance. The default is 0.0001.
|
1866
1866
|
silent : bool , optional
|
1867
|
-
If set to True,
|
1867
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1868
1868
|
|
1869
1869
|
Returns
|
1870
1870
|
-------
|
@@ -1932,7 +1932,7 @@ class Face():
|
|
1932
1932
|
tolerance : float , optional
|
1933
1933
|
The desired tolerance. The default is 0.0001.
|
1934
1934
|
silent : bool , optional
|
1935
|
-
If set to True,
|
1935
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1936
1936
|
|
1937
1937
|
Returns
|
1938
1938
|
-------
|
@@ -2087,7 +2087,7 @@ class Face():
|
|
2087
2087
|
tolerance : float , optional
|
2088
2088
|
The desired tolerance. The default is 0.0001.
|
2089
2089
|
silent : bool , optional
|
2090
|
-
If set to True,
|
2090
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
2091
2091
|
|
2092
2092
|
Returns
|
2093
2093
|
-------
|
@@ -2228,7 +2228,7 @@ class Face():
|
|
2228
2228
|
tolerance : float , optional:
|
2229
2229
|
The desired tolerance. The default is 0.0001.
|
2230
2230
|
silent : bool , optional
|
2231
|
-
If set to True,
|
2231
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
2232
2232
|
|
2233
2233
|
Returns
|
2234
2234
|
-------
|
@@ -2815,7 +2815,7 @@ class Face():
|
|
2815
2815
|
tolerance : float , optional
|
2816
2816
|
The desired tolerance. The default is 0.0001.
|
2817
2817
|
silent : bool , optional
|
2818
|
-
If set to True,
|
2818
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
2819
2819
|
|
2820
2820
|
Returns
|
2821
2821
|
-------
|
@@ -2916,7 +2916,7 @@ class Face():
|
|
2916
2916
|
tolerance : float , optional
|
2917
2917
|
The desired tolerance. The default is 0.0001.
|
2918
2918
|
silent : bool , optional
|
2919
|
-
If set to True,
|
2919
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
2920
2920
|
|
2921
2921
|
Returns
|
2922
2922
|
-------
|
@@ -3123,7 +3123,7 @@ class Face():
|
|
3123
3123
|
tolerance : float , optional
|
3124
3124
|
The desired tolerance. The default is 0.0001.
|
3125
3125
|
silent : bool , optional
|
3126
|
-
If set to True,
|
3126
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
3127
3127
|
|
3128
3128
|
Returns
|
3129
3129
|
-------
|
@@ -3379,7 +3379,7 @@ class Face():
|
|
3379
3379
|
tolerance : float , optional
|
3380
3380
|
The desired tolerance. The default is 0.0001.
|
3381
3381
|
silent : bool , optional
|
3382
|
-
If set to True,
|
3382
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
3383
3383
|
|
3384
3384
|
Returns
|
3385
3385
|
-------
|
@@ -3430,7 +3430,7 @@ class Face():
|
|
3430
3430
|
tolerance : float , optional
|
3431
3431
|
The desired tolerance. The default is 0.0001.
|
3432
3432
|
silent : bool , optional
|
3433
|
-
If set to True,
|
3433
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
3434
3434
|
|
3435
3435
|
Returns
|
3436
3436
|
-------
|
@@ -3518,7 +3518,7 @@ class Face():
|
|
3518
3518
|
tolerance : float , optional
|
3519
3519
|
The desired tolerance. The default is 0.0001.
|
3520
3520
|
silent : bool , optional
|
3521
|
-
If set to True,
|
3521
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
3522
3522
|
|
3523
3523
|
Returns
|
3524
3524
|
-------
|
@@ -3565,7 +3565,7 @@ class Face():
|
|
3565
3565
|
tolerance : float , optional
|
3566
3566
|
The desired tolerance. The default is 0.0001.
|
3567
3567
|
silent : bool , optional
|
3568
|
-
If set to True,
|
3568
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
3569
3569
|
|
3570
3570
|
Returns
|
3571
3571
|
-------
|
@@ -3771,7 +3771,7 @@ class Face():
|
|
3771
3771
|
tolerance : float , optional
|
3772
3772
|
The desired tolerance. The default is 0.0001.
|
3773
3773
|
silent : bool , optional
|
3774
|
-
If set to True,
|
3774
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
3775
3775
|
|
3776
3776
|
Returns
|
3777
3777
|
-------
|
@@ -3883,7 +3883,7 @@ class Face():
|
|
3883
3883
|
tolerance : float , optional
|
3884
3884
|
The desired tolerance. The default is 0.0001.
|
3885
3885
|
silent : bool , optional
|
3886
|
-
If set to True,
|
3886
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
3887
3887
|
|
3888
3888
|
Returns
|
3889
3889
|
-------
|
@@ -4137,7 +4137,7 @@ class Face():
|
|
4137
4137
|
tolerance : float , optional
|
4138
4138
|
The desired tolerance. The default is 0.0001.
|
4139
4139
|
silent : bool , optional
|
4140
|
-
If set to True,
|
4140
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
4141
4141
|
|
4142
4142
|
Returns
|
4143
4143
|
-------
|