topologicpy 0.8.31__py3-none-any.whl → 0.8.35__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/Cell.py +1098 -10
- topologicpy/CellComplex.py +28 -1
- topologicpy/Dictionary.py +119 -0
- topologicpy/Edge.py +16 -0
- topologicpy/Face.py +319 -54
- topologicpy/Graph.py +2 -7
- topologicpy/Helper.py +52 -0
- topologicpy/Shell.py +119 -92
- topologicpy/Topology.py +189 -11
- topologicpy/Vertex.py +1 -1
- topologicpy/Wire.py +66 -31
- topologicpy/version.py +1 -1
- {topologicpy-0.8.31.dist-info → topologicpy-0.8.35.dist-info}/METADATA +1 -1
- {topologicpy-0.8.31.dist-info → topologicpy-0.8.35.dist-info}/RECORD +17 -17
- {topologicpy-0.8.31.dist-info → topologicpy-0.8.35.dist-info}/WHEEL +0 -0
- {topologicpy-0.8.31.dist-info → topologicpy-0.8.35.dist-info}/licenses/LICENSE +0 -0
- {topologicpy-0.8.31.dist-info → topologicpy-0.8.35.dist-info}/top_level.txt +0 -0
topologicpy/Wire.py
CHANGED
@@ -146,7 +146,7 @@ class Wire():
|
|
146
146
|
vertices = []
|
147
147
|
for arc_point in arc_points:
|
148
148
|
vertices.append(Vertex.ByCoordinates(list(arc_point)))
|
149
|
-
arc = Wire.ByVertices(vertices, close=False, tolerance=tolerance, silent=
|
149
|
+
arc = Wire.ByVertices(vertices, close=False, tolerance=tolerance, silent=True) #We want to force suppress errors and warnings here.
|
150
150
|
if not Topology.IsInstance(arc, "Wire"):
|
151
151
|
if not silent:
|
152
152
|
print("Wire.Arc - Error: Could not create an arc. Returning None.")
|
@@ -204,7 +204,7 @@ class Wire():
|
|
204
204
|
print("Wire.ArcByEdge - Warning: Could not create an arc. Returning the original edge.")
|
205
205
|
return edge
|
206
206
|
cv = Edge.EndVertex(norm)
|
207
|
-
return Wire.Arc(sv, cv, ev, sides=sides, close=close, tolerance=tolerance, silent=
|
207
|
+
return Wire.Arc(sv, cv, ev, sides=sides, close=close, tolerance=tolerance, silent=True) # we want to force suppress errors and warnings here
|
208
208
|
|
209
209
|
@staticmethod
|
210
210
|
def BoundingRectangle(topology, optimize: int = 0, mantissa: int = 6, tolerance: float = 0.0001, silent: bool = False):
|
@@ -345,7 +345,7 @@ class Wire():
|
|
345
345
|
return boundingRectangle
|
346
346
|
|
347
347
|
@staticmethod
|
348
|
-
def ByEdges(edges: list, orient: bool = False, tolerance: float = 0.0001):
|
348
|
+
def ByEdges(edges: list, orient: bool = False, tolerance: float = 0.0001, silent: bool = False):
|
349
349
|
"""
|
350
350
|
Creates a wire from the input list of edges.
|
351
351
|
|
@@ -356,7 +356,9 @@ class Wire():
|
|
356
356
|
orient : bool , optional
|
357
357
|
If set to True the edges are oriented head to tail. Otherwise, they are not. The default is False.
|
358
358
|
tolerance : float , optional
|
359
|
-
The desired tolerance. The default is 0.0001
|
359
|
+
The desired tolerance. The default is 0.0001.
|
360
|
+
silent : bool , optional
|
361
|
+
If set to True, no error and warning messages are printed. Otherwise, they are. The default is False.
|
360
362
|
|
361
363
|
Returns
|
362
364
|
-------
|
@@ -371,14 +373,16 @@ class Wire():
|
|
371
373
|
return None
|
372
374
|
edgeList = [x for x in edges if Topology.IsInstance(x, "Edge")]
|
373
375
|
if len(edgeList) == 0:
|
374
|
-
|
376
|
+
if not silent:
|
377
|
+
print("Wire.ByEdges - Error: The input edges list does not contain any valid edges. Returning None.")
|
375
378
|
return None
|
376
379
|
if len(edgeList) == 1:
|
377
380
|
wire = topologic.Wire.ByEdges(edgeList) # Hook to Core
|
378
381
|
else:
|
379
382
|
wire = Topology.SelfMerge(Cluster.ByTopologies(edgeList), tolerance=tolerance)
|
380
383
|
if not Topology.IsInstance(wire, "Wire"):
|
381
|
-
|
384
|
+
if not silent:
|
385
|
+
print("Wire.ByEdges - Error: The operation failed. Returning None.")
|
382
386
|
wire = None
|
383
387
|
if Wire.IsManifold(wire):
|
384
388
|
if orient == True:
|
@@ -870,6 +874,7 @@ class Wire():
|
|
870
874
|
from topologicpy.Edge import Edge
|
871
875
|
from topologicpy.Cluster import Cluster
|
872
876
|
from topologicpy.Topology import Topology
|
877
|
+
import inspect
|
873
878
|
|
874
879
|
if not isinstance(vertices, list):
|
875
880
|
return None
|
@@ -877,6 +882,9 @@ class Wire():
|
|
877
882
|
if len(vertexList) < 2:
|
878
883
|
if not silent:
|
879
884
|
print("Wire.ByVertices - Error: The number of vertices is less than 2. Returning None.")
|
885
|
+
curframe = inspect.currentframe()
|
886
|
+
calframe = inspect.getouterframes(curframe, 2)
|
887
|
+
print('caller name:', calframe[1][3])
|
880
888
|
return None
|
881
889
|
edges = []
|
882
890
|
for i in range(len(vertexList)-1):
|
@@ -885,17 +893,32 @@ class Wire():
|
|
885
893
|
e = Edge.ByVertices([v1, v2], tolerance=tolerance, silent=silent)
|
886
894
|
if Topology.IsInstance(e, "Edge"):
|
887
895
|
edges.append(e)
|
896
|
+
else:
|
897
|
+
if not silent:
|
898
|
+
curframe = inspect.currentframe()
|
899
|
+
calframe = inspect.getouterframes(curframe, 2)
|
900
|
+
print('caller name:', calframe[1][3])
|
888
901
|
if close:
|
889
902
|
v1 = vertexList[-1]
|
890
903
|
v2 = vertexList[0]
|
891
|
-
e = Edge.ByVertices([v1, v2], tolerance=tolerance, silent=
|
904
|
+
e = Edge.ByVertices([v1, v2], tolerance=tolerance, silent=True) # We want to force suppress errors and warnings here.
|
892
905
|
if Topology.IsInstance(e, "Edge"):
|
893
906
|
edges.append(e)
|
907
|
+
else:
|
908
|
+
if not silent:
|
909
|
+
print("Wire.ByVertices - Warning: Degenerate edge. Skipping.")
|
910
|
+
curframe = inspect.currentframe()
|
911
|
+
calframe = inspect.getouterframes(curframe, 2)
|
912
|
+
print('caller name:', calframe[1][3])
|
894
913
|
if len(edges) < 1:
|
895
|
-
|
914
|
+
if not silent:
|
915
|
+
print("Wire.ByVertices - Error: The number of edges is less than 1. Returning None.")
|
916
|
+
curframe = inspect.currentframe()
|
917
|
+
calframe = inspect.getouterframes(curframe, 2)
|
918
|
+
print('caller name:', calframe[1][3])
|
896
919
|
return None
|
897
920
|
elif len(edges) == 1:
|
898
|
-
wire = Wire.ByEdges(edges, orient=False)
|
921
|
+
wire = Wire.ByEdges(edges, orient=False, silent=silent)
|
899
922
|
else:
|
900
923
|
wire = Topology.SelfMerge(Cluster.ByTopologies(edges), tolerance=tolerance)
|
901
924
|
return wire
|
@@ -932,7 +955,7 @@ class Wire():
|
|
932
955
|
return Wire.ByVertices(vertices, close=close, tolerance=tolerance, silent=silent)
|
933
956
|
|
934
957
|
@staticmethod
|
935
|
-
def Circle(origin= None, radius: float = 0.5, sides: int = 16, fromAngle: float = 0.0, toAngle: float = 360.0, close: bool = True, direction: list = [0, 0, 1], placement: str = "center", tolerance: float = 0.0001):
|
958
|
+
def Circle(origin= None, radius: float = 0.5, sides: int = 16, fromAngle: float = 0.0, toAngle: float = 360.0, close: bool = True, direction: list = [0, 0, 1], placement: str = "center", tolerance: float = 0.0001, silent: bool = False):
|
936
959
|
"""
|
937
960
|
Creates a circle.
|
938
961
|
|
@@ -969,10 +992,12 @@ class Wire():
|
|
969
992
|
if not Topology.IsInstance(origin, "Vertex"):
|
970
993
|
origin = Vertex.ByCoordinates(0, 0, 0)
|
971
994
|
if not Topology.IsInstance(origin, "Vertex"):
|
972
|
-
|
995
|
+
if not silent:
|
996
|
+
print("Wire.Circle - Error: The input origin parameter is not a valid Vertex. Returning None.")
|
973
997
|
return None
|
974
998
|
if not placement.lower() in ["center", "lowerleft", "upperleft", "lowerright", "upperright"]:
|
975
|
-
|
999
|
+
if not silent:
|
1000
|
+
print("Wire.Circle - Error: The input placement parameter is not a recognized string. Returning None.")
|
976
1001
|
return None
|
977
1002
|
radius = abs(radius)
|
978
1003
|
if radius <= tolerance:
|
@@ -1002,9 +1027,9 @@ class Wire():
|
|
1002
1027
|
baseV.append(Vertex.ByCoordinates(x, y, z))
|
1003
1028
|
|
1004
1029
|
if angleRange == 360:
|
1005
|
-
baseWire = Wire.ByVertices(baseV[::-1], close=False, tolerance=tolerance) #reversing the list so that the normal points up in Blender
|
1030
|
+
baseWire = Wire.ByVertices(baseV[::-1], close=False, tolerance=tolerance, silent=silent) #reversing the list so that the normal points up in Blender
|
1006
1031
|
else:
|
1007
|
-
baseWire = Wire.ByVertices(baseV[::-1], close=close, tolerance=tolerance) #reversing the list so that the normal points up in Blender
|
1032
|
+
baseWire = Wire.ByVertices(baseV[::-1], close=close, tolerance=tolerance, silent=silent) #reversing the list so that the normal points up in Blender
|
1008
1033
|
|
1009
1034
|
if placement.lower() == "lowerleft":
|
1010
1035
|
baseWire = Topology.Translate(baseWire, radius, radius, 0)
|
@@ -2352,14 +2377,14 @@ class Wire():
|
|
2352
2377
|
v1 = Topology.TranslateByDirectionDistance(v, dir1, a)
|
2353
2378
|
center = Topology.TranslateByDirectionDistance(v, dir_bisector, h)
|
2354
2379
|
v2 = Topology.TranslateByDirectionDistance(v, dir2, a)
|
2355
|
-
fillet = Wire.Circle(origin=center, radius=radius, close=True)
|
2356
|
-
bisector = Edge.ByVertices(v, center)
|
2380
|
+
fillet = Wire.Circle(origin=center, radius=radius, close=True, tolerance=tolerance, silent=silent)
|
2381
|
+
bisector = Edge.ByVertices(v, center, tolerance=tolerance, silent=silent)
|
2357
2382
|
mid_vertex = Topology.Slice(bisector, fillet)
|
2358
2383
|
mid_vertex = Topology.Vertices(mid_vertex)[1]
|
2359
|
-
fillet = Wire.Arc(v1, mid_vertex, v2, sides=sides, close= False)
|
2384
|
+
fillet = Wire.Arc(v1, mid_vertex, v2, sides=sides, close= False, tolerance=tolerance, silent=silent)
|
2360
2385
|
f_sv = Wire.StartVertex(fillet)
|
2361
2386
|
if Vertex.Distance(f_sv, edge1) < Vertex.Distance(f_sv, edge0):
|
2362
|
-
fillet = Wire.Reverse(fillet)
|
2387
|
+
fillet = Wire.Reverse(fillet, silent=True)
|
2363
2388
|
final_vertices += Topology.Vertices(fillet)
|
2364
2389
|
else:
|
2365
2390
|
if not silent:
|
@@ -2368,7 +2393,7 @@ class Wire():
|
|
2368
2393
|
final_vertices.append(v)
|
2369
2394
|
else:
|
2370
2395
|
final_vertices.append(v)
|
2371
|
-
flat_wire = Wire.ByVertices(final_vertices, close=Wire.IsClosed(wire), tolerance=tolerance)
|
2396
|
+
flat_wire = Wire.ByVertices(final_vertices, close=Wire.IsClosed(wire), tolerance=tolerance, silent=True)
|
2372
2397
|
# Unflatten the wire
|
2373
2398
|
return_wire = Topology.Unflatten(flat_wire, origin=Vertex.Origin(), direction=normal)
|
2374
2399
|
return return_wire
|
@@ -3540,7 +3565,7 @@ class Wire():
|
|
3540
3565
|
return w
|
3541
3566
|
|
3542
3567
|
@staticmethod
|
3543
|
-
def Rectangle(origin= None, width: float = 1.0, length: float = 1.0, direction: list = [0, 0, 1], placement: str = "center", angTolerance: float = 0.1, tolerance: float = 0.0001):
|
3568
|
+
def Rectangle(origin= None, width: float = 1.0, length: float = 1.0, direction: list = [0, 0, 1], placement: str = "center", angTolerance: float = 0.1, tolerance: float = 0.0001, silent: bool = False):
|
3544
3569
|
"""
|
3545
3570
|
Creates a rectangle.
|
3546
3571
|
|
@@ -3560,6 +3585,8 @@ class Wire():
|
|
3560
3585
|
The desired angular tolerance. The default is 0.1.
|
3561
3586
|
tolerance : float , optional
|
3562
3587
|
The desired tolerance. The default is 0.0001.
|
3588
|
+
silent : bool , optional
|
3589
|
+
If set to True, no error and warning messages are printed. Otherwise, they are. The default is False.
|
3563
3590
|
|
3564
3591
|
Returns
|
3565
3592
|
-------
|
@@ -3573,18 +3600,22 @@ class Wire():
|
|
3573
3600
|
if not Topology.IsInstance(origin, "Vertex"):
|
3574
3601
|
origin = Vertex.ByCoordinates(0, 0, 0)
|
3575
3602
|
if not Topology.IsInstance(origin, "Vertex"):
|
3576
|
-
|
3603
|
+
if not silent:
|
3604
|
+
print("Wire.Rectangle - Error: specified origin is not a topologic vertex. Returning None.")
|
3577
3605
|
return None
|
3578
3606
|
if not placement.lower() in ["center", "lowerleft", "upperleft", "lowerright", "upperright"]:
|
3579
|
-
|
3607
|
+
if not silent:
|
3608
|
+
print("Wire.Rectangle - Error: Could not find placement in the list of placements. Returning None.")
|
3580
3609
|
return None
|
3581
3610
|
width = abs(width)
|
3582
3611
|
length = abs(length)
|
3583
3612
|
if width <= tolerance or length <= tolerance:
|
3584
|
-
|
3613
|
+
if not silent:
|
3614
|
+
print("Wire.Rectangle - Error: One or more of the specified dimensions is below the tolerance value. Returning None.")
|
3585
3615
|
return None
|
3586
3616
|
if (abs(direction[0]) + abs(direction[1]) + abs(direction[2])) <= tolerance:
|
3587
|
-
|
3617
|
+
if not silent:
|
3618
|
+
print("Wire.Rectangle - Error: The direction vector magnitude is below the tolerance value. Returning None.")
|
3588
3619
|
return None
|
3589
3620
|
xOffset = 0
|
3590
3621
|
yOffset = 0
|
@@ -3606,7 +3637,7 @@ class Wire():
|
|
3606
3637
|
vb3 = Vertex.ByCoordinates(Vertex.X(origin)+width*0.5+xOffset,Vertex.Y(origin)+length*0.5+yOffset,Vertex.Z(origin))
|
3607
3638
|
vb4 = Vertex.ByCoordinates(Vertex.X(origin)-width*0.5+xOffset,Vertex.Y(origin)+length*0.5+yOffset,Vertex.Z(origin))
|
3608
3639
|
|
3609
|
-
baseWire = Wire.ByVertices([vb1, vb2, vb3, vb4], close=True, tolerance=tolerance)
|
3640
|
+
baseWire = Wire.ByVertices([vb1, vb2, vb3, vb4], close=True, tolerance=tolerance, silent=silent)
|
3610
3641
|
if direction != [0, 0, 1]:
|
3611
3642
|
baseWire = Topology.Orient(baseWire, origin=origin, dirA=[0, 0, 1], dirB=direction)
|
3612
3643
|
return baseWire
|
@@ -3787,7 +3818,7 @@ class Wire():
|
|
3787
3818
|
return return_list
|
3788
3819
|
|
3789
3820
|
@staticmethod
|
3790
|
-
def Reverse(wire, transferDictionaries = False, tolerance: float = 0.0001):
|
3821
|
+
def Reverse(wire, transferDictionaries = False, tolerance: float = 0.0001, silent: bool = False):
|
3791
3822
|
"""
|
3792
3823
|
Creates a wire that has the reverse direction of the input wire.
|
3793
3824
|
|
@@ -3799,6 +3830,8 @@ class Wire():
|
|
3799
3830
|
If set to True the dictionaries of the input wire are transferred to the new wire. Othwerwise, they are not. The default is False.
|
3800
3831
|
tolerance : float , optional
|
3801
3832
|
The desired tolerance. The default is 0.0001.
|
3833
|
+
silent : bool, optional
|
3834
|
+
If set to True, no error and warning messages are printed. Otherwise, they are. The default is False.
|
3802
3835
|
|
3803
3836
|
Returns
|
3804
3837
|
-------
|
@@ -3809,10 +3842,12 @@ class Wire():
|
|
3809
3842
|
from topologicpy.Topology import Topology
|
3810
3843
|
|
3811
3844
|
if not Topology.IsInstance(wire, "Wire"):
|
3812
|
-
|
3845
|
+
if not silent:
|
3846
|
+
print("Wire.Reverse - Error: The input wire parameter is not a valid wire. Returning None.")
|
3813
3847
|
return None
|
3814
3848
|
if not Wire.IsManifold(wire):
|
3815
|
-
|
3849
|
+
if not silent:
|
3850
|
+
print("Wire.Reverse - Error: The input wire parameter is not a manifold wire. Returning None.")
|
3816
3851
|
return None
|
3817
3852
|
|
3818
3853
|
original_vertices = Topology.Vertices(wire)
|
@@ -3826,11 +3861,11 @@ class Wire():
|
|
3826
3861
|
edge_selectors.append(s)
|
3827
3862
|
vertices = Topology.Vertices(wire)
|
3828
3863
|
vertices.reverse()
|
3829
|
-
return_wire = Wire.ByVertices(vertices, close=Wire.IsClosed(wire), tolerance=tolerance)
|
3864
|
+
return_wire = Wire.ByVertices(vertices, close=Wire.IsClosed(wire), tolerance=tolerance, silent=silent)
|
3830
3865
|
if transferDictionaries:
|
3831
3866
|
return_wire = Topology.TransferDictionariesBySelectors(return_wire, selectors=edge_selectors, tranEdges=True)
|
3832
3867
|
return_wire = Topology.TransferDictionariesBySelectors(return_wire, selectors=original_vertices, tranVertices=True)
|
3833
|
-
return_wire = Topology.SetDictionary(return_wire, Topology.Dictionary(wire), silent=
|
3868
|
+
return_wire = Topology.SetDictionary(return_wire, Topology.Dictionary(wire), silent=silent)
|
3834
3869
|
return return_wire
|
3835
3870
|
|
3836
3871
|
@staticmethod
|
@@ -4594,7 +4629,7 @@ class Wire():
|
|
4594
4629
|
"""
|
4595
4630
|
sv, ev = Wire.StartEndVertices(wire)
|
4596
4631
|
return sv
|
4597
|
-
|
4632
|
+
|
4598
4633
|
@staticmethod
|
4599
4634
|
def Trapezoid(origin= None, widthA: float = 1.0, widthB: float = 0.75, offsetA: float = 0.0, offsetB: float = 0.0, length: float = 1.0, direction: list = [0, 0, 1], placement: str = "center", tolerance: float = 0.0001):
|
4600
4635
|
"""
|
topologicpy/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = '0.8.
|
1
|
+
__version__ = '0.8.35'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: topologicpy
|
3
|
-
Version: 0.8.
|
3
|
+
Version: 0.8.35
|
4
4
|
Summary: An AI-Powered Spatial Modelling and Analysis Software Library for Architecture, Engineering, and Construction.
|
5
5
|
Author-email: Wassim Jabi <wassim.jabi@gmail.com>
|
6
6
|
License: AGPL v3 License
|
@@ -2,19 +2,19 @@ topologicpy/ANN.py,sha256=DrNAhNHp-jSvsPc1fb7KVPU46cYmejAvghhknOM430Y,47932
|
|
2
2
|
topologicpy/Aperture.py,sha256=wNn5miB_IrGCBYuQ18HXQYRva20dUC3id4AJCulL7to,2723
|
3
3
|
topologicpy/BVH.py,sha256=ti-23A2HIxaqnJ3C9GWhCjQev9qQwdrSfZVfXVZujYE,13127
|
4
4
|
topologicpy/CSG.py,sha256=hqFPg3RvAnRgzwyyWbc4N80ZYO9AfvbWn0RsjXvaz8k,15695
|
5
|
-
topologicpy/Cell.py,sha256=
|
6
|
-
topologicpy/CellComplex.py,sha256=
|
5
|
+
topologicpy/Cell.py,sha256=WQyi2xKT5PFovGZzu1oiw0ICuJultsOXnNbfELrMLTI,173467
|
6
|
+
topologicpy/CellComplex.py,sha256=muhqLpnlZXZKVSF3j_v4uF1LbdVyrZqmLqH_uoACYRU,60919
|
7
7
|
topologicpy/Cluster.py,sha256=Wv81yPlQ3Qlnylpvs2aBVNV77M0Z9oHTUfTeLbAuX74,58790
|
8
8
|
topologicpy/Color.py,sha256=ZVVQRKGjebY9aOU1gpN_AbssdRRiVKlZV3f8TrsTNgg,20307
|
9
9
|
topologicpy/Context.py,sha256=G3CwMvN8Jw2rnQRwB-n4MaQq_wLS0vPimbXKwsdMJ80,3055
|
10
10
|
topologicpy/DGL.py,sha256=HQXy9iDnrvWGDxaBfe5pRbweQ2zLBvAf6UdjfhKkQYI,139041
|
11
|
-
topologicpy/Dictionary.py,sha256=
|
12
|
-
topologicpy/Edge.py,sha256=
|
11
|
+
topologicpy/Dictionary.py,sha256=Rdd8RwBkuoqndcDWOHfO5oZHngoF2brNdWEB7P5Bns4,40900
|
12
|
+
topologicpy/Edge.py,sha256=6M7UMPZj_JXXH9mFieEcQu3haYQ6Rn64yRcL0b_axl8,73484
|
13
13
|
topologicpy/EnergyModel.py,sha256=Pyb28gDDwhzlQIH0xqAygqS0P3SJxWyyV7OWS_AAfRs,53856
|
14
|
-
topologicpy/Face.py,sha256=
|
15
|
-
topologicpy/Graph.py,sha256=
|
14
|
+
topologicpy/Face.py,sha256=1r6j4DOhDJEVyRTuFhxh1wmRMEvqZe8FQ0_Yy-J0pzg,202021
|
15
|
+
topologicpy/Graph.py,sha256=VNJsJpJW2fJADzgT_yYDljEc_2YjGgHBmWjIqcVplNE,580758
|
16
16
|
topologicpy/Grid.py,sha256=EbI2NcYhQDpD5mItd7A1Lpr8Puuf87vZPWuoh7_gChQ,18483
|
17
|
-
topologicpy/Helper.py,sha256=
|
17
|
+
topologicpy/Helper.py,sha256=9YdcJ8P6HYi-3v0lV_QNQw-PwUcl3TnBrw2QPBdNiqo,31287
|
18
18
|
topologicpy/Honeybee.py,sha256=yctkwfdupKnp7bAOjP1Z4YaYpRrWoMEb4gz9Z5zaWwE,21751
|
19
19
|
topologicpy/Matrix.py,sha256=BHGDRkBn1pf5DkRoY8feAhDGHTF3bjFM4jluiEb_A0w,22779
|
20
20
|
topologicpy/Neo4j.py,sha256=vNMaqTWerwr-3luLjYEXNhf8T97aFee6x5sIKBHY73s,22392
|
@@ -22,17 +22,17 @@ topologicpy/Plotly.py,sha256=5E6M2N0MbdkA5iMZ_Y71PaPB9wilEneYVUba8RqeKe0,119400
|
|
22
22
|
topologicpy/Polyskel.py,sha256=oVfM4lqSMPTjnkHfsRU9VI8Blt6Vf0LVPkD9ebz7Wmw,27082
|
23
23
|
topologicpy/PyG.py,sha256=zvV6jtnol_aFiN6JRoMpYwBVfOU2aFs9gdWSdEo6mtU,109757
|
24
24
|
topologicpy/ShapeGrammar.py,sha256=ay2kOkMvoa_KqGd_ZCLgDk0hmyMniI636N_YbMsyM60,23259
|
25
|
-
topologicpy/Shell.py,sha256=
|
25
|
+
topologicpy/Shell.py,sha256=4zqC5m7RRQAmeIugqH098vSfBuW77L9ao5erdh8gA1Y,90585
|
26
26
|
topologicpy/Speckle.py,sha256=-eiTqJugd7pHiHpD3pDUcDO6CGhVyPV14HFRzaqEoaw,18187
|
27
27
|
topologicpy/Sun.py,sha256=_VBBAUIDhvpkp72JBZlv7k9qx9jYubm3yM56UZ1Nc6c,36837
|
28
|
-
topologicpy/Topology.py,sha256=
|
28
|
+
topologicpy/Topology.py,sha256=Bc16DUPrigdTiN_ShS6JViHRjsmR3jxChRBTe12S7Cw,466405
|
29
29
|
topologicpy/Vector.py,sha256=mx7fgABdioikPWM9HzXKzmqfx3u_XBcU_jlLD4qK2x8,42407
|
30
|
-
topologicpy/Vertex.py,sha256=
|
31
|
-
topologicpy/Wire.py,sha256=
|
30
|
+
topologicpy/Vertex.py,sha256=sY9M7sMep7iTGiRYlmr8ed18Yz_RLyH6-Fm_L6SJTTw,84688
|
31
|
+
topologicpy/Wire.py,sha256=lxlooqXjSWntwlg_h6AepNpOw_JPDIUpQKkrvvNYERk,231719
|
32
32
|
topologicpy/__init__.py,sha256=RMftibjgAnHB1vdL-muo71RwMS4972JCxHuRHOlU428,928
|
33
|
-
topologicpy/version.py,sha256=
|
34
|
-
topologicpy-0.8.
|
35
|
-
topologicpy-0.8.
|
36
|
-
topologicpy-0.8.
|
37
|
-
topologicpy-0.8.
|
38
|
-
topologicpy-0.8.
|
33
|
+
topologicpy/version.py,sha256=3ZOp-2mi5vS_FqQuNhjU7Os4xS6SwCO3uIAj_kgDx28,23
|
34
|
+
topologicpy-0.8.35.dist-info/licenses/LICENSE,sha256=FK0vJ73LuE8PYJAn7LutsReWR47-Ooovw2dnRe5yV6Q,681
|
35
|
+
topologicpy-0.8.35.dist-info/METADATA,sha256=vRbd2Mu3HprTBjKk-chx8zZXvRdPIm7x0I_oPvNhdaA,10535
|
36
|
+
topologicpy-0.8.35.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
37
|
+
topologicpy-0.8.35.dist-info/top_level.txt,sha256=J30bDzW92Ob7hw3zA8V34Jlp-vvsfIkGzkr8sqvb4Uw,12
|
38
|
+
topologicpy-0.8.35.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|