topologicpy 0.8.35__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 +2 -2
- topologicpy/Cluster.py +2 -2
- topologicpy/Dictionary.py +3 -3
- topologicpy/Edge.py +14 -14
- topologicpy/Face.py +31 -31
- topologicpy/Graph.py +103 -58
- topologicpy/Helper.py +4 -4
- topologicpy/Matrix.py +3 -3
- topologicpy/Neo4j.py +1 -1
- topologicpy/Plotly.py +29 -7
- topologicpy/ShapeGrammar.py +7 -7
- topologicpy/Shell.py +4 -4
- topologicpy/Topology.py +43 -36
- topologicpy/Vector.py +5 -5
- topologicpy/Vertex.py +6 -6
- topologicpy/Wire.py +20 -20
- topologicpy/version.py +1 -1
- {topologicpy-0.8.35.dist-info → topologicpy-0.8.36.dist-info}/METADATA +1 -1
- topologicpy-0.8.36.dist-info/RECORD +38 -0
- topologicpy-0.8.35.dist-info/RECORD +0 -38
- {topologicpy-0.8.35.dist-info → topologicpy-0.8.36.dist-info}/WHEEL +0 -0
- {topologicpy-0.8.35.dist-info → topologicpy-0.8.36.dist-info}/licenses/LICENSE +0 -0
- {topologicpy-0.8.35.dist-info → topologicpy-0.8.36.dist-info}/top_level.txt +0 -0
topologicpy/BVH.py
CHANGED
@@ -75,7 +75,7 @@ class BVH:
|
|
75
75
|
topologies : list
|
76
76
|
The list of topologies.
|
77
77
|
silent : bool , optional
|
78
|
-
If set to True,
|
78
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
79
79
|
|
80
80
|
Returns
|
81
81
|
-------
|
@@ -152,7 +152,7 @@ class BVH:
|
|
152
152
|
topologies : list
|
153
153
|
The list of topologies.
|
154
154
|
silent : bool , optional
|
155
|
-
If set to True,
|
155
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
156
156
|
|
157
157
|
Returns
|
158
158
|
-------
|
@@ -220,7 +220,7 @@ class BVH:
|
|
220
220
|
topologies : list
|
221
221
|
The list of topologies.
|
222
222
|
silent : bool , optional
|
223
|
-
If set to True,
|
223
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
224
224
|
|
225
225
|
Returns
|
226
226
|
-------
|
@@ -263,7 +263,7 @@ class BVH:
|
|
263
263
|
tolerance : float , optional
|
264
264
|
The desired tolerance. The default is 0.0001.
|
265
265
|
silent : bool , optional
|
266
|
-
If set to True,
|
266
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
267
267
|
|
268
268
|
Returns
|
269
269
|
-------
|
topologicpy/CSG.py
CHANGED
@@ -56,7 +56,7 @@ class CSG():
|
|
56
56
|
tolerance : float , optional
|
57
57
|
The desired tolerance. The default is 0.0001.
|
58
58
|
silent : bool , optional
|
59
|
-
If set to True,
|
59
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
60
60
|
|
61
61
|
Returns
|
62
62
|
-------
|
@@ -121,7 +121,7 @@ class CSG():
|
|
121
121
|
tolerance : float , optional
|
122
122
|
The desired tolerance. The default is 0.0001.
|
123
123
|
silent : bool , optional
|
124
|
-
If set to True,
|
124
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
125
125
|
|
126
126
|
Returns
|
127
127
|
-------
|
@@ -183,7 +183,7 @@ class CSG():
|
|
183
183
|
tolerance : float , optional
|
184
184
|
The desired tolerance. The default is 0.0001.
|
185
185
|
silent : bool , optional
|
186
|
-
If set to True,
|
186
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
187
187
|
|
188
188
|
Returns
|
189
189
|
-------
|
@@ -248,7 +248,7 @@ class CSG():
|
|
248
248
|
graph : topologic_core.Graph
|
249
249
|
The input graph.
|
250
250
|
silent : bool , optional
|
251
|
-
If set to True,
|
251
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
252
252
|
|
253
253
|
Returns
|
254
254
|
-------
|
@@ -358,7 +358,7 @@ class CSG():
|
|
358
358
|
scale : float , optional
|
359
359
|
A desired scale to resize the placed topologies. The default is 1.
|
360
360
|
silent : bool , optional
|
361
|
-
If set to True,
|
361
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
362
362
|
|
363
363
|
Returns
|
364
364
|
-------
|
topologicpy/Cell.py
CHANGED
@@ -99,7 +99,7 @@ class Cell():
|
|
99
99
|
tolerance : float , optional
|
100
100
|
The desired tolerance. The default is 0.0001.
|
101
101
|
silent : bool , optional
|
102
|
-
If set to True,
|
102
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
103
103
|
|
104
104
|
Returns
|
105
105
|
-------
|
@@ -268,7 +268,7 @@ class Cell():
|
|
268
268
|
tolerance : float , optional
|
269
269
|
The desired tolerance. The default is 0.0001.
|
270
270
|
silent : bool , optional
|
271
|
-
If set to True,
|
271
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
272
272
|
|
273
273
|
Returns
|
274
274
|
-------
|
@@ -320,7 +320,7 @@ class Cell():
|
|
320
320
|
tolerance : float , optional
|
321
321
|
The desired tolerance. The default is 0.0001.
|
322
322
|
silent : bool , optional
|
323
|
-
If set to True,
|
323
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
324
324
|
|
325
325
|
Returns
|
326
326
|
-------
|
@@ -377,7 +377,7 @@ class Cell():
|
|
377
377
|
tolerance : float , optional
|
378
378
|
The desired tolerance. The default is 0.0001.
|
379
379
|
silent : bool , optional
|
380
|
-
If set to True,
|
380
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
381
381
|
|
382
382
|
Returns
|
383
383
|
-------
|
@@ -435,7 +435,7 @@ class Cell():
|
|
435
435
|
tolerance : float , optional
|
436
436
|
The desired tolerance. The default is 0.0001.
|
437
437
|
silent : bool , optional
|
438
|
-
If set to True,
|
438
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
439
439
|
|
440
440
|
Raises
|
441
441
|
------
|
@@ -672,7 +672,7 @@ class Cell():
|
|
672
672
|
tolerance : float , optional
|
673
673
|
The desired tolerance. The default is 0.0001.
|
674
674
|
silent : bool , optional
|
675
|
-
If set to True,
|
675
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
676
676
|
|
677
677
|
Returns
|
678
678
|
-------
|
@@ -972,7 +972,7 @@ class Cell():
|
|
972
972
|
tolerance : float , optional
|
973
973
|
The desired tolerance. The default is 0.0001.
|
974
974
|
silent : bool , optional
|
975
|
-
If set to True,
|
975
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
976
976
|
|
977
977
|
Returns
|
978
978
|
-------
|
@@ -1157,7 +1157,7 @@ class Cell():
|
|
1157
1157
|
tolerance : float , optional
|
1158
1158
|
The desired tolerance. The default is 0.0001.
|
1159
1159
|
silent : bool , optional
|
1160
|
-
If set to True,
|
1160
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1161
1161
|
|
1162
1162
|
Returns
|
1163
1163
|
-------
|
@@ -1949,7 +1949,7 @@ class Cell():
|
|
1949
1949
|
tolerance : float , optional
|
1950
1950
|
The desired tolerance. The default is 0.0001.
|
1951
1951
|
silent : bool , optional
|
1952
|
-
If set to True,
|
1952
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1953
1953
|
|
1954
1954
|
Returns
|
1955
1955
|
-------
|
@@ -2008,7 +2008,7 @@ class Cell():
|
|
2008
2008
|
tolerance : float , optional
|
2009
2009
|
The desired tolerance. The default is 0.0001.
|
2010
2010
|
silent : bool , optional
|
2011
|
-
If set to True,
|
2011
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
2012
2012
|
|
2013
2013
|
Returns
|
2014
2014
|
-------
|
@@ -2188,7 +2188,7 @@ class Cell():
|
|
2188
2188
|
tolerance : float , optional
|
2189
2189
|
The desired tolerance. The default is 0.0001.
|
2190
2190
|
silent : bool , optional
|
2191
|
-
If set to True,
|
2191
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
2192
2192
|
|
2193
2193
|
Returns
|
2194
2194
|
-------
|
@@ -2398,7 +2398,7 @@ class Cell():
|
|
2398
2398
|
tolerance : float , optional
|
2399
2399
|
The desired tolerance. The default is 0.0001.
|
2400
2400
|
silent : bool , optional
|
2401
|
-
If set to True,
|
2401
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
2402
2402
|
|
2403
2403
|
Returns
|
2404
2404
|
-------
|
@@ -2783,7 +2783,7 @@ class Cell():
|
|
2783
2783
|
tolerance : float , optional
|
2784
2784
|
The desired tolerance. The default is 0.0001.
|
2785
2785
|
silent : bool , optional
|
2786
|
-
If set to True,
|
2786
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
2787
2787
|
|
2788
2788
|
Returns
|
2789
2789
|
-------
|
@@ -3002,7 +3002,7 @@ class Cell():
|
|
3002
3002
|
tolerance : float , optional
|
3003
3003
|
The desired tolerance. The default is 0.0001.
|
3004
3004
|
silent : bool , optional
|
3005
|
-
If set to True,
|
3005
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
3006
3006
|
|
3007
3007
|
Returns
|
3008
3008
|
-------
|
@@ -3358,7 +3358,7 @@ class Cell():
|
|
3358
3358
|
tolerance : float , optional
|
3359
3359
|
The desired tolerance. The default is 0.0001.
|
3360
3360
|
silent : bool , optional
|
3361
|
-
If set to True,
|
3361
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
3362
3362
|
|
3363
3363
|
Returns
|
3364
3364
|
-------
|
@@ -3490,7 +3490,7 @@ class Cell():
|
|
3490
3490
|
tolerance : float , optional
|
3491
3491
|
The desired tolerance. The default is 0.0001.
|
3492
3492
|
silent : bool , optional
|
3493
|
-
If set to True,
|
3493
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
3494
3494
|
|
3495
3495
|
Returns
|
3496
3496
|
-------
|
@@ -3605,7 +3605,7 @@ class Cell():
|
|
3605
3605
|
tolerance : float , optional
|
3606
3606
|
The desired tolerance. The default is 0.0001.
|
3607
3607
|
silent : bool , optional
|
3608
|
-
If set to True,
|
3608
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
3609
3609
|
|
3610
3610
|
Returns
|
3611
3611
|
-------
|
topologicpy/CellComplex.py
CHANGED
@@ -104,7 +104,7 @@ class CellComplex():
|
|
104
104
|
tolerance : float , optional
|
105
105
|
The desired tolerance. The default is 0.0001.
|
106
106
|
silent : bool , optional
|
107
|
-
If set to True,
|
107
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
108
108
|
|
109
109
|
Returns
|
110
110
|
-------
|
@@ -205,7 +205,7 @@ class CellComplex():
|
|
205
205
|
tolerance : float , optional
|
206
206
|
The desired tolerance. The default is 0.0001.
|
207
207
|
silent : bool , optional
|
208
|
-
If set to True,
|
208
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
209
209
|
|
210
210
|
Returns
|
211
211
|
-------
|
topologicpy/Cluster.py
CHANGED
@@ -154,7 +154,7 @@ class Cluster():
|
|
154
154
|
transferDictionaries : bool , optional
|
155
155
|
If set to True, the dictionaries from the input topologies are merged and transferred to the cluster. Otherwise they are not. The default is False.
|
156
156
|
silent : bool , optional
|
157
|
-
If set to True,
|
157
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
158
158
|
|
159
159
|
Returns
|
160
160
|
-------
|
@@ -1128,7 +1128,7 @@ class Cluster():
|
|
1128
1128
|
tolerance : float , optional
|
1129
1129
|
The desired tolerance. The default is 0.0001.
|
1130
1130
|
silent : bool , optional
|
1131
|
-
If set to True,
|
1131
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
1132
1132
|
|
1133
1133
|
Returns
|
1134
1134
|
-------
|
topologicpy/Dictionary.py
CHANGED
@@ -67,7 +67,7 @@ class Dictionary():
|
|
67
67
|
mantissa : int , optional
|
68
68
|
The desired length of the mantissa. The default is 6.
|
69
69
|
silent : bool , optional
|
70
|
-
If set to True,
|
70
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
71
71
|
|
72
72
|
Returns
|
73
73
|
-------
|
@@ -281,7 +281,7 @@ class Dictionary():
|
|
281
281
|
dictionaries : list or comma separated dictionaries
|
282
282
|
The input list of dictionaries to be merged.
|
283
283
|
silent : bool , optional
|
284
|
-
If set to True,
|
284
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
285
285
|
|
286
286
|
Returns
|
287
287
|
-------
|
@@ -905,7 +905,7 @@ class Dictionary():
|
|
905
905
|
defaultValue : any , optional
|
906
906
|
The default value to return if the key or value are not found. The default is None.
|
907
907
|
silent : bool , optional
|
908
|
-
If set to True,
|
908
|
+
If set to True, error and warning messages are suppressed. The default is False.
|
909
909
|
|
910
910
|
Returns
|
911
911
|
-------
|
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
|
-------
|