topologicpy 0.7.78__py3-none-any.whl → 0.7.80__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/ANN.py CHANGED
@@ -827,7 +827,7 @@ class ANN():
827
827
  Returns
828
828
  -------
829
829
  _ANNModel
830
- Returns the trained model.
830
+ Returns the initialized model.
831
831
 
832
832
  """
833
833
  def prepare_data(dataset, task_type='classification'):
@@ -898,7 +898,7 @@ class ANN():
898
898
  Returns
899
899
  -------
900
900
  list, list
901
- Returns two lists: metrics, and predictions.
901
+ Returns four lists: y_test, predictions, metrics, and confusion_matrix.
902
902
 
903
903
  """
904
904
  def prepare_data(dataset, task_type='classification'):
topologicpy/Helper.py CHANGED
@@ -125,7 +125,6 @@ class Helper:
125
125
  from topologicpy.Dictionary import Dictionary
126
126
  from topologicpy.Helper import Helper
127
127
  import inspect
128
-
129
128
  keys_list = list(keys)
130
129
  keys_list = Helper.Flatten(keys_list)
131
130
  keys_list = [x for x in keys_list if isinstance(x, str)]
@@ -155,9 +154,7 @@ class Helper:
155
154
  values = []
156
155
  new_dictionaries = []
157
156
  for i, d in enumerate(dictionaries):
158
- element = elements[i]
159
-
160
- d_keys = Dictionary.Keys(d)
157
+ d_keys = Dictionary.Keys(dictionaries[i])
161
158
  if len(d_keys) > 0:
162
159
  values_list = []
163
160
  for key in keys_list:
@@ -165,9 +162,13 @@ class Helper:
165
162
  if not v == None:
166
163
  values_list.append(v)
167
164
  values_list = str(values_list)
168
- d = Dictionary.SetValueAtKey(d, "_clustering_key_", values_list)
169
- new_dictionaries.append(d)
165
+ dictionaries[i] = Dictionary.SetValueAtKey(dictionaries[i], "_clustering_key_", values_list)
170
166
  values.append(values_list)
167
+ else:
168
+ dictionaries[i] = Dictionary.SetValueAtKey(dictionaries[i], "_clustering_key_", "_NONE_")
169
+ values.append("_NONE_")
170
+ new_dictionaries.append(dictionaries[i])
171
+
171
172
 
172
173
  values = list(set(values))
173
174
  remaining_dictionaries = [x for x in new_dictionaries]
topologicpy/Plotly.py CHANGED
@@ -609,12 +609,13 @@ class Plotly:
609
609
  n = len(str(len(elements_clusters)))
610
610
  labels = []
611
611
  for j, elements_cluster in enumerate(elements_clusters):
612
+ d_color = color
612
613
  labels.append("Edge_"+str(j+1).zfill(n))
613
614
  d = dict_clusters[j][0] # All dicitonaries have same values in dictionaries, so take first one.
614
615
  if d:
615
616
  if not colorKey == None:
616
617
  d_color = Dictionary.ValueAtKey(d, key=colorKey) or color
617
- color = Color.AnyToHex(d_color)
618
+ d_color = Color.AnyToHex(d_color)
618
619
  if not labelKey == None:
619
620
  label = str(Dictionary.ValueAtKey(d, key=labelKey)) or ""
620
621
  if not widthKey == None:
@@ -632,7 +633,6 @@ class Plotly:
632
633
  d_color = Color.ByValueInRange(group, minValue=minGroup, maxValue=maxGroup, colorScale=colorScale)
633
634
  else:
634
635
  d_color = Color.ByValueInRange(groups.index(group), minValue=minGroup, maxValue=maxGroup, colorScale=colorScale)
635
- color = d_color
636
636
 
637
637
  x = []
638
638
  y = []
@@ -658,7 +658,7 @@ class Plotly:
658
658
  showlegend=showLegend,
659
659
  marker=dict(symbol="circle", size=marker_width),
660
660
  mode=mode,
661
- line=dict(color=color, width=width),
661
+ line=dict(color=d_color, width=width),
662
662
  legendgroup=legendGroup,
663
663
  legendrank=legendRank,
664
664
  text=label,
topologicpy/Topology.py CHANGED
@@ -1116,14 +1116,6 @@ class Topology():
1116
1116
  """
1117
1117
  return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="slice", tranDict=tranDict, tolerance=tolerance)
1118
1118
 
1119
- @staticmethod
1120
- def Merge(topologyA, topologyB, tranDict=False, tolerance=0.0001):
1121
- """
1122
- See Topology.Boolean().
1123
-
1124
- """
1125
- return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="merge", tranDict=tranDict, tolerance=tolerance)
1126
-
1127
1119
  @staticmethod
1128
1120
  def Impose(topologyA, topologyB, tranDict=False, tolerance=0.0001):
1129
1121
  """
@@ -1567,7 +1559,7 @@ class Topology():
1567
1559
  return edges[0]
1568
1560
 
1569
1561
  output = Cluster.ByTopologies(edges)
1570
- if topologyType.lower() == "wire":
1562
+ if topologyType == "wire":
1571
1563
  output = Topology.SelfMerge(output, tolerance=tolerance)
1572
1564
  if Topology.IsInstance(output, "Wire"):
1573
1565
  return output
@@ -6471,7 +6463,31 @@ class Topology():
6471
6463
  print("Topology.MergeAll - Error: the input topologyList does not contain any valid topologies. Returning None.")
6472
6464
  return None
6473
6465
  return Topology.SelfMerge(Cluster.ByTopologies(topologyList), tolerance=tolerance)
6474
-
6466
+
6467
+ @staticmethod
6468
+ def Move(topology, x=0, y=0, z=0):
6469
+ """
6470
+ Moves the input topology.
6471
+
6472
+ Parameters
6473
+ ----------
6474
+ topology : topologic_core.topology
6475
+ The input topology.
6476
+ x : float , optional
6477
+ The x distance value. The default is 0.
6478
+ y : float , optional
6479
+ The y distance value. The default is 0.
6480
+ z : float , optional
6481
+ The z distance value. The default is 0.
6482
+
6483
+ Returns
6484
+ -------
6485
+ topologic_core.Topology
6486
+ The moved topology.
6487
+
6488
+ """
6489
+ return Topology.Translate(topology, x=x, y=y, z=z)
6490
+
6475
6491
  @staticmethod
6476
6492
  def OCCTShape(topology):
6477
6493
  """
@@ -6864,7 +6880,7 @@ class Topology():
6864
6880
  final_faces.append(f)
6865
6881
  else:
6866
6882
  print("Topology.RemoveCoplanarFaces - Warning: Could not remove some coplanar faces. Re-adding original faces.")
6867
- final_faces += Shell.Faces(shell)
6883
+ final_faces += Shell.Faces(t)
6868
6884
  else: # It is a cluster
6869
6885
  shells = Topology.Shells(t)
6870
6886
  for shell in shells:
@@ -7227,12 +7243,12 @@ class Topology():
7227
7243
  if not Topology.IsInstance(origin, "Vertex"):
7228
7244
  print("Topology.Rotate - Error: The input origin parameter is not a valid topologic vertex. Returning None.")
7229
7245
  return None
7230
- returnTopology = topology
7246
+ return_topology = topology
7231
7247
  d = Topology.Dictionary(topology)
7232
7248
  if abs(angle) >= angTolerance:
7233
7249
  try:
7234
7250
  x, y, z = axis
7235
- returnTopology = topologic.TopologyUtility.Rotate(topology, origin, x, y, z, angle)
7251
+ return_topology = topologic.TopologyUtility.Rotate(topology, origin, x, y, z, angle)
7236
7252
  except:
7237
7253
  print("Topology.Rotate - Warning: (topologic.TopologyUtility.Rotate) operation failed. Trying a workaround.")
7238
7254
  vertices = [Vertex.Coordinates(v) for v in Topology.Vertices(topology)]
@@ -7241,14 +7257,43 @@ class Topology():
7241
7257
  for v in vertices:
7242
7258
  rot_vertices.append(rotate_vertex_3d(v, axis, angle, origin))
7243
7259
  rot_vertices = [Vertex.ByCoordinates(rot_v) for rot_v in rot_vertices]
7244
- new_topology = Topology.ReplaceVertices(topology, verticesA=Topology.Vertices(topology), verticesB=rot_vertices)
7245
- new_topology = Topology.SelfMerge(new_topology, tolerance=tolerance)
7246
- if len(Dictionary.Keys(d)) > 0:
7247
- new_topology = Topology.SetDictionary(new_topology, d)
7248
- return new_topology
7260
+ return_topology = Topology.ReplaceVertices(topology, verticesA=Topology.Vertices(topology), verticesB=rot_vertices)
7261
+ return_topology = Topology.SelfMerge(return_topology, tolerance=tolerance)
7249
7262
  if len(Dictionary.Keys(d)) > 0:
7250
- returnTopology = Topology.SetDictionary(returnTopology, d)
7251
- return returnTopology
7263
+ return_topology = Topology.SetDictionary(return_topology, d)
7264
+
7265
+ vertices = Topology.Vertices(topology)
7266
+ edges = Topology.Edges(topology)
7267
+ wires = Topology.Wires(topology)
7268
+ faces = Topology.Faces(topology)
7269
+ shells = Topology.Shells(topology)
7270
+ cells = Topology.Cells(topology)
7271
+ cellComplexes = Topology.CellComplexes(topology)
7272
+
7273
+ r_vertices = Topology.Vertices(return_topology)
7274
+ r_edges = Topology.Edges(return_topology)
7275
+ r_wires = Topology.Wires(return_topology)
7276
+ r_faces = Topology.Faces(return_topology)
7277
+ r_shells = Topology.Shells(return_topology)
7278
+ r_cells = Topology.Cells(return_topology)
7279
+ r_cellComplexes = Topology.CellComplexes(return_topology)
7280
+
7281
+ for i, t in enumerate(r_vertices):
7282
+ t = Topology.SetDictionary(t, Topology.Dictionary(vertices[i]), silent=True)
7283
+ for i, t in enumerate(r_edges):
7284
+ t = Topology.SetDictionary(t, Topology.Dictionary(edges[i]), silent=True)
7285
+ for i, t in enumerate(r_wires):
7286
+ t = Topology.SetDictionary(t, Topology.Dictionary(wires[i]), silent=True)
7287
+ for i, t in enumerate(r_faces):
7288
+ t = Topology.SetDictionary(t, Topology.Dictionary(faces[i]), silent=True)
7289
+ for i, t in enumerate(r_shells):
7290
+ t = Topology.SetDictionary(t, Topology.Dictionary(shells[i]), silent=True)
7291
+ for i, t in enumerate(r_cells):
7292
+ t = Topology.SetDictionary(t, Topology.Dictionary(cells[i]), silent=True)
7293
+ for i, t in enumerate(r_cellComplexes):
7294
+ t = Topology.SetDictionary(t, Topology.Dictionary(cellComplexes[i]), silent=True)
7295
+
7296
+ return return_topology
7252
7297
 
7253
7298
  @staticmethod
7254
7299
  def RotateByEulerAngles(topology, origin = None, roll: float = 0, pitch: float = 0, yaw: float = 0, angTolerance: float = 0.001, tolerance: float = 0.0001):
@@ -7402,20 +7447,53 @@ class Topology():
7402
7447
  The scaled topology.
7403
7448
 
7404
7449
  """
7450
+
7405
7451
  from topologicpy.Vertex import Vertex
7452
+
7406
7453
  if not Topology.IsInstance(topology, "Topology"):
7407
7454
  return None
7408
7455
  if not Topology.IsInstance(origin, "Vertex"):
7409
7456
  origin = Vertex.ByCoordinates(0, 0, 0)
7410
7457
  if not Topology.IsInstance(origin, "Vertex"):
7411
7458
  return None
7412
- newTopology = None
7459
+ return_topology = None
7413
7460
  try:
7414
- newTopology = topologic.TopologyUtility.Scale(topology, origin, x, y, z)
7461
+ return_topology = topologic.TopologyUtility.Scale(topology, origin, x, y, z)
7415
7462
  except:
7416
7463
  print("Topology.Scale - ERROR: (Topologic>TopologyUtility.Scale) operation failed. Returning None.")
7417
- newTopology = None
7418
- return newTopology
7464
+ return_topology = None
7465
+
7466
+ vertices = Topology.Vertices(topology)
7467
+ edges = Topology.Edges(topology)
7468
+ wires = Topology.Wires(topology)
7469
+ faces = Topology.Faces(topology)
7470
+ shells = Topology.Shells(topology)
7471
+ cells = Topology.Cells(topology)
7472
+ cellComplexes = Topology.CellComplexes(topology)
7473
+
7474
+ r_vertices = Topology.Vertices(return_topology)
7475
+ r_edges = Topology.Edges(return_topology)
7476
+ r_wires = Topology.Wires(return_topology)
7477
+ r_faces = Topology.Faces(return_topology)
7478
+ r_shells = Topology.Shells(return_topology)
7479
+ r_cells = Topology.Cells(return_topology)
7480
+ r_cellComplexes = Topology.CellComplexes(return_topology)
7481
+
7482
+ for i, t in enumerate(r_vertices):
7483
+ t = Topology.SetDictionary(t, Topology.Dictionary(vertices[i]), silent=True)
7484
+ for i, t in enumerate(r_edges):
7485
+ t = Topology.SetDictionary(t, Topology.Dictionary(edges[i]), silent=True)
7486
+ for i, t in enumerate(r_wires):
7487
+ t = Topology.SetDictionary(t, Topology.Dictionary(wires[i]), silent=True)
7488
+ for i, t in enumerate(r_faces):
7489
+ t = Topology.SetDictionary(t, Topology.Dictionary(faces[i]), silent=True)
7490
+ for i, t in enumerate(r_shells):
7491
+ t = Topology.SetDictionary(t, Topology.Dictionary(shells[i]), silent=True)
7492
+ for i, t in enumerate(r_cells):
7493
+ t = Topology.SetDictionary(t, Topology.Dictionary(cells[i]), silent=True)
7494
+ for i, t in enumerate(r_cellComplexes):
7495
+ t = Topology.SetDictionary(t, Topology.Dictionary(cellComplexes[i]), silent=True)
7496
+ return return_topology
7419
7497
 
7420
7498
 
7421
7499
  @staticmethod
@@ -8950,8 +9028,42 @@ class Topology():
8950
9028
  kTranslationY = matrix[3][1]
8951
9029
  kTranslationZ = matrix[3][2]
8952
9030
 
8953
- return topologic.TopologyUtility.Transform(topology, kTranslationX, kTranslationY, kTranslationZ, kRotation11, kRotation12, kRotation13, kRotation21, kRotation22, kRotation23, kRotation31, kRotation32, kRotation33)
9031
+ return_topology = topologic.TopologyUtility.Transform(topology, kTranslationX, kTranslationY, kTranslationZ, kRotation11, kRotation12, kRotation13, kRotation21, kRotation22, kRotation23, kRotation31, kRotation32, kRotation33)
9032
+
9033
+ vertices = Topology.Vertices(topology)
9034
+ edges = Topology.Edges(topology)
9035
+ wires = Topology.Wires(topology)
9036
+ faces = Topology.Faces(topology)
9037
+ shells = Topology.Shells(topology)
9038
+ cells = Topology.Cells(topology)
9039
+ cellComplexes = Topology.CellComplexes(topology)
8954
9040
 
9041
+ r_vertices = Topology.Vertices(return_topology)
9042
+ r_edges = Topology.Edges(return_topology)
9043
+ r_wires = Topology.Wires(return_topology)
9044
+ r_faces = Topology.Faces(return_topology)
9045
+ r_shells = Topology.Shells(return_topology)
9046
+ r_cells = Topology.Cells(return_topology)
9047
+ r_cellComplexes = Topology.CellComplexes(return_topology)
9048
+
9049
+ for i, t in enumerate(r_vertices):
9050
+ t = Topology.SetDictionary(t, Topology.Dictionary(vertices[i]), silent=True)
9051
+ for i, t in enumerate(r_edges):
9052
+ t = Topology.SetDictionary(t, Topology.Dictionary(edges[i]), silent=True)
9053
+ for i, t in enumerate(r_wires):
9054
+ t = Topology.SetDictionary(t, Topology.Dictionary(wires[i]), silent=True)
9055
+ for i, t in enumerate(r_faces):
9056
+ t = Topology.SetDictionary(t, Topology.Dictionary(faces[i]), silent=True)
9057
+ for i, t in enumerate(r_shells):
9058
+ t = Topology.SetDictionary(t, Topology.Dictionary(shells[i]), silent=True)
9059
+ for i, t in enumerate(r_cells):
9060
+ t = Topology.SetDictionary(t, Topology.Dictionary(cells[i]), silent=True)
9061
+ for i, t in enumerate(r_cellComplexes):
9062
+ t = Topology.SetDictionary(t, Topology.Dictionary(cellComplexes[i]), silent=True)
9063
+
9064
+ return_topology = Topology.SetDictionary(return_topology, Topology.Dictionary(topology), silent=True)
9065
+ return return_topology
9066
+
8955
9067
  @staticmethod
8956
9068
  def Translate(topology, x=0, y=0, z=0):
8957
9069
  """
@@ -8974,13 +9086,55 @@ class Topology():
8974
9086
  The translated topology.
8975
9087
 
8976
9088
  """
9089
+ from topologicpy.Vertex import Vertex
9090
+ from topologicpy.Dictionary import Dictionary
9091
+
8977
9092
  if not Topology.IsInstance(topology, "Topology"):
8978
9093
  print("Topology.Translate - Error: The input topology parameter is not a valid topology. Returning None.")
8979
9094
  return None
9095
+
9096
+ if Topology.IsInstance(topology, "vertex"):
9097
+ old_x, old_y, old_z = Vertex.Coordinates(topology)
9098
+ return_topology = Vertex.ByCoordinates(old_x+x, old_y+y, old_z+z)
9099
+ return_topology = Topology.SetDictionary(return_topology, Topology.Dictionary(topology), silent=True)
9100
+ return return_topology
9101
+ vertices = Topology.Vertices(topology)
9102
+ edges = Topology.Edges(topology)
9103
+ wires = Topology.Wires(topology)
9104
+ faces = Topology.Faces(topology)
9105
+ shells = Topology.Shells(topology)
9106
+ cells = Topology.Cells(topology)
9107
+ cellComplexes = Topology.CellComplexes(topology)
9108
+
8980
9109
  try:
8981
- return topologic.TopologyUtility.Translate(topology, x, y, z)
9110
+ return_topology = topologic.TopologyUtility.Translate(topology, x, y, z)
8982
9111
  except:
8983
- return topology
9112
+ return_topology = topology
9113
+
9114
+ r_vertices = Topology.Vertices(return_topology)
9115
+ r_edges = Topology.Edges(return_topology)
9116
+ r_wires = Topology.Wires(return_topology)
9117
+ r_faces = Topology.Faces(return_topology)
9118
+ r_shells = Topology.Shells(return_topology)
9119
+ r_cells = Topology.Cells(return_topology)
9120
+ r_cellComplexes = Topology.CellComplexes(return_topology)
9121
+ for i, t in enumerate(r_vertices):
9122
+ t = Topology.SetDictionary(t, Topology.Dictionary(vertices[i]), silent=True)
9123
+ for i, t in enumerate(r_edges):
9124
+ t = Topology.SetDictionary(t, Topology.Dictionary(edges[i]), silent=True)
9125
+ for i, t in enumerate(r_wires):
9126
+ t = Topology.SetDictionary(t, Topology.Dictionary(wires[i]), silent=True)
9127
+ for i, t in enumerate(r_faces):
9128
+ t = Topology.SetDictionary(t, Topology.Dictionary(faces[i]), silent=True)
9129
+ for i, t in enumerate(r_shells):
9130
+ t = Topology.SetDictionary(t, Topology.Dictionary(shells[i]), silent=True)
9131
+ for i, t in enumerate(r_cells):
9132
+ t = Topology.SetDictionary(t, Topology.Dictionary(cells[i]), silent=True)
9133
+ for i, t in enumerate(r_cellComplexes):
9134
+ t = Topology.SetDictionary(t, Topology.Dictionary(cellComplexes[i]), silent=True)
9135
+
9136
+ return_topology = Topology.SetDictionary(return_topology, Topology.Dictionary(topology), silent=True)
9137
+ return return_topology
8984
9138
 
8985
9139
  @staticmethod
8986
9140
  def TranslateByDirectionDistance(topology, direction: list = [0, 0, 0], distance: float = 0):
topologicpy/Wire.py CHANGED
@@ -3039,8 +3039,20 @@ class Wire():
3039
3039
  final_wire = Edge.ByStartVertexEndVertex(wire_verts[0], wire_verts[1], tolerance=tolerance, silent=True)
3040
3040
  return final_wire
3041
3041
 
3042
+ if Topology.IsInstance(wire, "cluster"):
3043
+ wires = Topology.Wires(wire)
3044
+ temp_wires = []
3045
+ for w in wires:
3046
+ temp_w = Wire.RemoveCollinearEdges(w)
3047
+ if not temp_w == None:
3048
+ temp_wires.append(temp_w)
3049
+ if len(temp_wires) > 0:
3050
+ result = Topology.SelfMerge(Cluster.ByTopologies(temp_w))
3051
+ return result
3042
3052
  if not Topology.IsInstance(wire, "Wire"):
3043
3053
  if not silent:
3054
+ print("The wire is:", wire)
3055
+ Topology.Show(wire)
3044
3056
  print("Wire.RemoveCollinearEdges - Error: The input wire parameter is not a valid wire. Returning None.")
3045
3057
  curframe = inspect.currentframe()
3046
3058
  calframe = inspect.getouterframes(curframe, 2)
topologicpy/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.7.78'
1
+ __version__ = '0.7.80'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: topologicpy
3
- Version: 0.7.78
3
+ Version: 0.7.80
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
@@ -1,4 +1,4 @@
1
- topologicpy/ANN.py,sha256=XAuUjNvDRK1hhXfo82S-zXmnAPZGEdHJMRdfpu0aJ8I,47901
1
+ topologicpy/ANN.py,sha256=m_WxD1lgQqDhUpaM20Lia6TmJACDYaAE96wigsi-99U,47932
2
2
  topologicpy/Aperture.py,sha256=p9pUzTQSBWoUaDiug1V1R1hnEIEwYSXFg2t7iRAmNRY,2723
3
3
  topologicpy/BVH.py,sha256=mKVCAu9K8qzcWXtPDVH5usXZV1DNNNJl4n3rU5Lh1ZM,12931
4
4
  topologicpy/Cell.py,sha256=2izd-YGqy897_JHHgrGlIo5WwUeEIWVD3KspV1z_sj8,107860
@@ -13,24 +13,24 @@ topologicpy/EnergyModel.py,sha256=AqTtmXE35SxvRXhG3vYAQd7GQDW-6HtjYPHua6ME4Eg,53
13
13
  topologicpy/Face.py,sha256=mS7LI3qIo2jfQbibpInArRfXMmTZd7xU8IdvRYUIGSU,124747
14
14
  topologicpy/Graph.py,sha256=ZhMVB6ntuhIgTrKLUPryeAJFFBF0cnRsNgESbaohOiw,416914
15
15
  topologicpy/Grid.py,sha256=9N6PE84qCm40TRi2WtlVZSBwXXr47zHpscEpZHg_JW4,18205
16
- topologicpy/Helper.py,sha256=Sv35czP_j0oLDeJcN8usswUm4U3auiK1LQ_Z_HBvxxg,21716
16
+ topologicpy/Helper.py,sha256=vUWbnZJxn0e9YsFUNyJ5Dee8Nh6TmDp9uCzCk4e0qAA,21897
17
17
  topologicpy/Honeybee.py,sha256=HfTaEV1R8K1xOVQQy9sBOhBTF_ap8A2RxZOYhirp_Mw,21835
18
18
  topologicpy/Matrix.py,sha256=umgR7An919-wGInXJ1wpqnoQ2jCPdyMe2rcWTZ16upk,8079
19
19
  topologicpy/Neo4j.py,sha256=t52hgE9cVsqkGc7m7fjRsLnyfRHakVHwdvF4ms7ow78,22342
20
- topologicpy/Plotly.py,sha256=cI1I6F-hGuN4dG-O-QvByipP0H1n5WsNG7_d0Y6_FNQ,113509
20
+ topologicpy/Plotly.py,sha256=z7xs9Ra2OwJNv5NMapH27R6didS8UMpjZIN35ZnAQcE,113501
21
21
  topologicpy/Polyskel.py,sha256=EFsuh2EwQJGPLiFUjvtXmAwdX-A4r_DxP5hF7Qd3PaU,19829
22
22
  topologicpy/PyG.py,sha256=LU9LCCzjxGPUM31qbaJXZsTvniTtgugxJY7y612t4A4,109757
23
23
  topologicpy/Shell.py,sha256=8OJjlWk9eCZ3uGOTht6ZVrcMczCafw-YWoDGueaz7eg,87673
24
24
  topologicpy/Speckle.py,sha256=AlsGlSDuKRtX5jhVsPNSSjjbZis079HbUchDH_5RJmE,18187
25
25
  topologicpy/Sun.py,sha256=42tDWMYpwRG7Z2Qjtp94eRgBuqySq7k8TgNUZDK7QxQ,36837
26
- topologicpy/Topology.py,sha256=W4cUFsRurb20PkoN_xJ_JfPCzqF1WWxmVdRcbjINi2w,425776
26
+ topologicpy/Topology.py,sha256=nTthwB8vmfdpfoP8tTQCUhHr29WhjuV7l0btAI1rHkQ,433216
27
27
  topologicpy/Vector.py,sha256=A1g83zDHep58iVPY8WQ8iHNrSOfGWFEzvVeDuMnjDNY,33078
28
28
  topologicpy/Vertex.py,sha256=mcLJaWFCct03dkVmT25wAl6k0k2EaYvB1PWNO9WQHWg,73465
29
- topologicpy/Wire.py,sha256=pLhdos_kZwvIdzsQlVGb2jtZ4dK8ATTmEsZHDnAGBxk,185972
29
+ topologicpy/Wire.py,sha256=o6MlOjubkJ_f5s1tUamizCsoPKvcQ2OudtJv0yCF-2o,186477
30
30
  topologicpy/__init__.py,sha256=vlPCanUbxe5NifC4pHcnhSzkmmYcs_UrZrTlVMsxcFs,928
31
- topologicpy/version.py,sha256=EWhF8BAhkJGx-tk4Su0QKSe1yJ5s9S0qkdf3KEnEEqE,23
32
- topologicpy-0.7.78.dist-info/LICENSE,sha256=FK0vJ73LuE8PYJAn7LutsReWR47-Ooovw2dnRe5yV6Q,681
33
- topologicpy-0.7.78.dist-info/METADATA,sha256=aVX5f6Z7-BS3b71jkQKden7ENVrgrXpkZgLkNdRUcH0,10513
34
- topologicpy-0.7.78.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
35
- topologicpy-0.7.78.dist-info/top_level.txt,sha256=J30bDzW92Ob7hw3zA8V34Jlp-vvsfIkGzkr8sqvb4Uw,12
36
- topologicpy-0.7.78.dist-info/RECORD,,
31
+ topologicpy/version.py,sha256=aBUXqj0fVv7Q8TFJaUl3kuETKLosGV1MVLaSEclOujg,23
32
+ topologicpy-0.7.80.dist-info/LICENSE,sha256=FK0vJ73LuE8PYJAn7LutsReWR47-Ooovw2dnRe5yV6Q,681
33
+ topologicpy-0.7.80.dist-info/METADATA,sha256=g22rsF0lEieZmVNOo3LukQGLjnAykoocyDmw2qBPHwg,10513
34
+ topologicpy-0.7.80.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
35
+ topologicpy-0.7.80.dist-info/top_level.txt,sha256=J30bDzW92Ob7hw3zA8V34Jlp-vvsfIkGzkr8sqvb4Uw,12
36
+ topologicpy-0.7.80.dist-info/RECORD,,