topologicpy 0.7.86__py3-none-any.whl → 0.7.87__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/Plotly.py CHANGED
@@ -305,8 +305,8 @@ class Plotly:
305
305
  showEdgeLabel: bool = False,
306
306
  showEdgeLegend: bool = False,
307
307
  edgeLegendLabel="Graph Edges",
308
- edgeLegendRank=2,
309
- edgeLegendGroup=2,
308
+ edgeLegendRank=5,
309
+ edgeLegendGroup=5,
310
310
  colorScale: str = "viridis",
311
311
  mantissa: int = 6,
312
312
  silent: bool = False):
@@ -411,7 +411,7 @@ class Plotly:
411
411
 
412
412
  if showVertices:
413
413
  vertices = Graph.Vertices(graph)
414
- v_dictionaries = [Topology.Dictionary(v) for v in vertices]
414
+ #v_dictionaries = [Topology.Dictionary(v) for v in vertices]
415
415
  e_cluster = Cluster.ByTopologies(vertices)
416
416
  geo = Topology.Geometry(e_cluster, mantissa=mantissa)
417
417
  vertices = geo['vertices']
@@ -427,6 +427,7 @@ class Plotly:
427
427
  vertexMinGroup=vertexMinGroup,
428
428
  vertexMaxGroup=vertexMaxGroup,
429
429
  vertexGroups=vertexGroups,
430
+ showVertexLegend=showVertexLegend,
430
431
  vertexLegendLabel=vertexLegendLabel,
431
432
  vertexLegendGroup=vertexLegendGroup,
432
433
  vertexLegendRank=vertexLegendRank,
@@ -653,7 +654,7 @@ class Plotly:
653
654
  trace = go.Scatter3d(x=x,
654
655
  y=y,
655
656
  z=z,
656
- name=label,
657
+ name=legendLabel,
657
658
  showlegend=showLegend,
658
659
  marker=dict(symbol="circle", size=marker_width),
659
660
  mode=mode,
@@ -680,7 +681,7 @@ class Plotly:
680
681
  trace = go.Scatter3d(x=x,
681
682
  y=y,
682
683
  z=z,
683
- name=label,
684
+ name=legendLabel,
684
685
  showlegend=showLegend,
685
686
  marker_size=0,
686
687
  mode=mode,
@@ -703,20 +704,49 @@ class Plotly:
703
704
 
704
705
  @staticmethod
705
706
  def DataByTopology(topology,
706
- showVertices=True, vertexSize=1.1, vertexSizeKey=None, vertexColor="black", vertexColorKey=None,
707
- vertexLabelKey=None, showVertexLabel=False, vertexGroupKey=None, vertexGroups=[],
708
- vertexMinGroup=None, vertexMaxGroup=None,
709
- showVertexLegend=False, vertexLegendLabel="Topology Vertices", vertexLegendRank=1,
707
+ showVertices=True,
708
+ vertexSize=1.1,
709
+ vertexSizeKey=None,
710
+ vertexColor="black",
711
+ vertexColorKey=None,
712
+ vertexLabelKey=None,
713
+ showVertexLabel=False,
714
+ vertexGroupKey=None,
715
+ vertexGroups=[],
716
+ vertexMinGroup=None,
717
+ vertexMaxGroup=None,
718
+ showVertexLegend=False,
719
+ vertexLegendLabel="Topology Vertices",
720
+ vertexLegendRank=1,
710
721
  vertexLegendGroup=1,
711
- showEdges=True, edgeWidth=1, edgeWidthKey=None, edgeColor="black", edgeColorKey=None,
712
- edgeLabelKey=None, showEdgeLabel=False, edgeGroupKey=None, edgeGroups=[],
713
- edgeMinGroup=None, edgeMaxGroup=None,
714
- showEdgeLegend=False, edgeLegendLabel="Topology Edges", edgeLegendRank=2,
722
+ showEdges=True,
723
+ edgeWidth=1,
724
+ edgeWidthKey=None,
725
+ edgeColor="black",
726
+ edgeColorKey=None,
727
+ edgeLabelKey=None,
728
+ showEdgeLabel=False,
729
+ edgeGroupKey=None,
730
+ edgeGroups=[],
731
+ edgeMinGroup=None,
732
+ edgeMaxGroup=None,
733
+ showEdgeLegend=False,
734
+ edgeLegendLabel="Topology Edges",
735
+ edgeLegendRank=2,
715
736
  edgeLegendGroup=2,
716
- showFaces=True, faceOpacity=0.5, faceOpacityKey=None, faceColor="#FAFAFA", faceColorKey=None,
717
- faceLabelKey=None, faceGroupKey=None, faceGroups=[],
718
- faceMinGroup=None, faceMaxGroup=None,
719
- showFaceLegend=False, faceLegendLabel="Topology Faces", faceLegendRank=3,
737
+ showFaces=True,
738
+ faceOpacity=0.5,
739
+ faceOpacityKey=None,
740
+ faceColor="#FAFAFA",
741
+ faceColorKey=None,
742
+ faceLabelKey=None,
743
+ faceGroupKey=None,
744
+ faceGroups=[],
745
+ faceMinGroup=None,
746
+ faceMaxGroup=None,
747
+ showFaceLegend=False,
748
+ faceLegendLabel="Topology Faces",
749
+ faceLegendRank=3,
720
750
  faceLegendGroup=3,
721
751
  intensityKey=None, intensities=[], colorScale="viridis", mantissa=6, tolerance=0.0001):
722
752
  """
topologicpy/Topology.py CHANGED
@@ -7923,39 +7923,86 @@ class Topology():
7923
7923
 
7924
7924
  @staticmethod
7925
7925
  def Show(*topologies,
7926
+ nameKey = "name",
7926
7927
  opacityKey = "opacity",
7927
- showVertices=True, vertexSize=None, vertexSizeKey = None, vertexColor="black", vertexColorKey = None,
7928
- vertexLabelKey=None, showVertexLabel= False,
7929
- vertexGroupKey=None, vertexGroups=[],
7930
- vertexMinGroup=None, vertexMaxGroup=None,
7931
- showVertexLegend=False, vertexLegendLabel="Topology Vertices", vertexLegendRank=1,
7932
- vertexLegendGroup=1,
7933
-
7934
- showEdges=True, edgeWidth=None, edgeWidthKey = None, edgeColor=None, edgeColorKey = None,
7935
- edgeLabelKey=None, showEdgeLabel = False,
7936
- edgeGroupKey=None, edgeGroups=[],
7937
- edgeMinGroup=None, edgeMaxGroup=None,
7938
- showEdgeLegend=False, edgeLegendLabel="Topology Edges", edgeLegendRank=2,
7939
- edgeLegendGroup=2,
7940
-
7941
- showFaces=True, faceOpacity=0.5, faceOpacityKey=None, faceColor="#FAFAFA", faceColorKey = None,
7942
- faceLabelKey=None, faceGroupKey=None, faceGroups=[],
7943
- faceMinGroup=None, faceMaxGroup=None,
7944
- showFaceLegend=False, faceLegendLabel="Topology Faces", faceLegendRank=3,
7945
- faceLegendGroup=3,
7928
+ showVertices=True,
7929
+ vertexSize=None,
7930
+ vertexSizeKey = None,
7931
+ vertexColor="black",
7932
+ vertexColorKey = None,
7933
+ vertexLabelKey=None,
7934
+ showVertexLabel= False,
7935
+ vertexGroupKey=None,
7936
+ vertexGroups=[],
7937
+ vertexMinGroup=None,
7938
+ vertexMaxGroup=None,
7939
+ showVertexLegend=False,
7940
+ vertexLegendLabel="Vertices",
7941
+
7942
+ showEdges=True,
7943
+ edgeWidth=None,
7944
+ edgeWidthKey = None,
7945
+ edgeColor=None,
7946
+ edgeColorKey = None,
7947
+ edgeLabelKey=None,
7948
+ showEdgeLabel = False,
7949
+ edgeGroupKey=None,
7950
+ edgeGroups=[],
7951
+ edgeMinGroup=None,
7952
+ edgeMaxGroup=None,
7953
+ showEdgeLegend=False,
7954
+ edgeLegendLabel="Edges",
7955
+
7956
+ showFaces=True,
7957
+ faceOpacity=0.5,
7958
+ faceOpacityKey=None,
7959
+ faceColor="#FAFAFA",
7960
+ faceColorKey = None,
7961
+ faceLabelKey=None,
7962
+ faceGroupKey=None,
7963
+ faceGroups=[],
7964
+ faceMinGroup=None,
7965
+ faceMaxGroup=None,
7966
+ showFaceLegend=False,
7967
+ faceLegendLabel="Faces",
7946
7968
  intensityKey=None,
7947
7969
  intensities=[],
7948
7970
 
7949
- width=950, height=500,
7950
- xAxis=False, yAxis=False, zAxis=False, axisSize=1, backgroundColor='rgba(0,0,0,0)',
7951
- marginLeft=0, marginRight=0, marginTop=20, marginBottom=0, camera=[-1.25, -1.25, 1.25],
7952
- center=[0, 0, 0], up=[0, 0, 1], projection="perspective", renderer="notebook", showScale=False,
7971
+ width=950,
7972
+ height=500,
7973
+ xAxis=False,
7974
+ yAxis=False,
7975
+ zAxis=False,
7976
+ axisSize=1,
7977
+ backgroundColor='rgba(0,0,0,0)',
7978
+ marginLeft=0,
7979
+ marginRight=0,
7980
+ marginTop=20,
7981
+ marginBottom=0,
7982
+ camera=[-1.25, -1.25, 1.25],
7983
+ center=[0, 0, 0],
7984
+ up=[0, 0, 1],
7985
+ projection="perspective",
7986
+ renderer="notebook",
7987
+ showScale=False,
7953
7988
 
7954
- cbValues=[], cbTicks=5, cbX=-0.15, cbWidth=15, cbOutlineWidth=0, cbTitle="",
7955
- cbSubTitle="", cbUnits="", colorScale="Viridis",
7989
+ cbValues=[],
7990
+ cbTicks=5,
7991
+ cbX=-0.15,
7992
+ cbWidth=15,
7993
+ cbOutlineWidth=0,
7994
+ cbTitle="",
7995
+ cbSubTitle="",
7996
+ cbUnits="",
7997
+ colorScale="Viridis",
7956
7998
 
7957
- sagitta = 0, absolute = False, sides = 8, angle = 0,
7958
- mantissa=6, tolerance=0.0001, silent=False):
7999
+ sagitta = 0,
8000
+ absolute = False,
8001
+ sides = 8,
8002
+ angle = 0,
8003
+ mantissa=6,
8004
+ tolerance=0.0001,
8005
+ silent=False):
7959
8006
  """
7960
8007
  Shows the input topology on screen.
7961
8008
 
@@ -7997,10 +8044,6 @@ class Topology():
7997
8044
  If set to True, the legend for the vertices of this topology is shown. Otherwise, it isn't. The default is False.
7998
8045
  vertexLegendLabel : str , optional
7999
8046
  The legend label string used to identify vertices. The default is "Topology Vertices".
8000
- vertexLegendRank : int , optional
8001
- The legend rank order of the vertices of this topology. The default is 1.
8002
- vertexLegendGroup : int , optional
8003
- The number of the vertex legend group to which the vertices of this topology belong. The default is 1.
8004
8047
 
8005
8048
  showEdges : bool , optional
8006
8049
  If set to True the edges will be drawn. Otherwise, they will not be drawn. The default is True.
@@ -8034,10 +8077,6 @@ class Topology():
8034
8077
  If set to True, the legend for the edges of this topology is shown. Otherwise, it isn't. The default is False.
8035
8078
  edgeLegendLabel : str , optional
8036
8079
  The legend label string used to identify edges. The default is "Topology Edges".
8037
- edgeLegendRank : int , optional
8038
- The legend rank order of the edges of this topology. The default is 2.
8039
- edgeLegendGroup : int , optional
8040
- The number of the edge legend group to which the edges of this topology belong. The default is 2.
8041
8080
 
8042
8081
  showFaces : bool , optional
8043
8082
  If set to True the faces will be drawn. Otherwise, they will not be drawn. The default is True.
@@ -8069,10 +8108,6 @@ class Topology():
8069
8108
  If set to True, the legend for the faces of this topology is shown. Otherwise, it isn't. The default is False.
8070
8109
  faceLegendLabel : str , optional
8071
8110
  The legend label string used to idenitfy edges. The default is "Topology Faces".
8072
- faceLegendRank : int , optional
8073
- The legend rank order of the faces of this topology. The default is 3.
8074
- faceLegendGroup : int , optional
8075
- The number of the face legend group to which the faces of this topology belong. The default is 3.
8076
8111
  width : int , optional
8077
8112
  The width in pixels of the figure. The default value is 950.
8078
8113
  height : int , optional
@@ -8149,8 +8184,6 @@ class Topology():
8149
8184
  from topologicpy.Dictionary import Dictionary
8150
8185
  from topologicpy.Plotly import Plotly
8151
8186
  from topologicpy.Helper import Helper
8152
- from topologicpy.Graph import Graph
8153
- from topologicpy.Color import Color
8154
8187
 
8155
8188
  if isinstance(topologies, tuple):
8156
8189
  topologies = Helper.Flatten(list(topologies))
@@ -8164,8 +8197,18 @@ class Topology():
8164
8197
  if camera[0] == 0 and camera[1] == 0 and up == [0,0,1]:
8165
8198
  up = [0,1,0] #default to positive Y axis being up if looking down or up at the XY plane
8166
8199
  data = []
8167
- for topology in new_topologies:
8200
+ topology_counter = 0
8201
+ offset = 1
8202
+ if showEdges == True:
8203
+ offset += 1
8204
+ if showFaces == True:
8205
+ offset +=2
8206
+ temp_graphs = [g for g in new_topologies if Topology.IsInstance(g, "Graph")]
8207
+ graph_counter = len(new_topologies)*offset - len(temp_graphs)*offset
8208
+ for i, topology in enumerate(new_topologies):
8209
+ d = Topology.Dictionary(topology)
8168
8210
  if Topology.IsInstance(topology, "Graph"):
8211
+ name = Dictionary.ValueAtKey(d, nameKey) or "Untitled Graph"
8169
8212
  if vertexSize == None:
8170
8213
  vSize = 10
8171
8214
  else:
@@ -8178,6 +8221,9 @@ class Topology():
8178
8221
  eColor = "red"
8179
8222
  else:
8180
8223
  eColor = edgeColor
8224
+ vll = name+" ("+vertexLegendLabel+")"
8225
+ ell = name+" ("+edgeLegendLabel+")"
8226
+
8181
8227
  data += Plotly.DataByGraph(topology,
8182
8228
  sagitta=sagitta,
8183
8229
  absolute=absolute,
@@ -8195,6 +8241,9 @@ class Topology():
8195
8241
  showVertices=showVertices,
8196
8242
  showVertexLabel=showVertexLabel,
8197
8243
  showVertexLegend=showVertexLegend,
8244
+ vertexLegendLabel= str(i+1)+": "+vll,
8245
+ vertexLegendRank= (graph_counter+1),
8246
+ vertexLegendGroup= (graph_counter+1),
8198
8247
  edgeColor=eColor,
8199
8248
  edgeColorKey=edgeColorKey,
8200
8249
  edgeWidth=eWidth,
@@ -8207,9 +8256,14 @@ class Topology():
8207
8256
  showEdges=showEdges,
8208
8257
  showEdgeLabel=showEdgeLabel,
8209
8258
  showEdgeLegend=showEdgeLegend,
8259
+ edgeLegendLabel = str(i+1)+": "+ell,
8260
+ edgeLegendRank= (graph_counter+2),
8261
+ edgeLegendGroup=(graph_counter+2),
8210
8262
  colorScale=colorScale,
8211
8263
  silent=silent)
8264
+ graph_counter += offset
8212
8265
  else:
8266
+ name = Dictionary.ValueAtKey(d, nameKey) or "Untitled"
8213
8267
  if vertexSize == None:
8214
8268
  vSize = 1.1
8215
8269
  else:
@@ -8222,26 +8276,59 @@ class Topology():
8222
8276
  eColor = "black"
8223
8277
  else:
8224
8278
  eColor = edgeColor
8225
- d = Topology.Dictionary(topology)
8226
8279
  if not d == None:
8227
8280
  faceOpacity = Dictionary.ValueAtKey(d, opacityKey) or faceOpacity
8228
8281
  data += Plotly.DataByTopology(topology=topology,
8229
- showVertices=showVertices, vertexSize=vSize, vertexSizeKey=vertexSizeKey, vertexColor=vertexColor, vertexColorKey=vertexColorKey,
8230
- vertexLabelKey=vertexLabelKey, showVertexLabel=showVertexLabel, vertexGroupKey=vertexGroupKey, vertexGroups=vertexGroups,
8231
- vertexMinGroup=vertexMinGroup, vertexMaxGroup=vertexMaxGroup,
8232
- showVertexLegend=showVertexLegend, vertexLegendLabel=vertexLegendLabel, vertexLegendRank=vertexLegendRank,
8233
- vertexLegendGroup=vertexLegendGroup,
8234
- showEdges=showEdges, edgeWidth=eWidth, edgeWidthKey=edgeWidthKey, edgeColor=eColor, edgeColorKey=edgeColorKey,
8235
- edgeLabelKey=edgeLabelKey, showEdgeLabel=showEdgeLabel, edgeGroupKey=edgeGroupKey, edgeGroups=edgeGroups,
8236
- edgeMinGroup=edgeMinGroup, edgeMaxGroup=edgeMaxGroup,
8237
- showEdgeLegend=showEdgeLegend, edgeLegendLabel=edgeLegendLabel, edgeLegendRank=edgeLegendRank,
8238
- edgeLegendGroup=edgeLegendGroup,
8239
- showFaces=showFaces, faceOpacity=faceOpacity, faceColor=faceColor, faceColorKey=faceColorKey,
8240
- faceLabelKey=faceLabelKey, faceGroupKey=faceGroupKey, faceGroups=faceGroups,
8241
- faceMinGroup=faceMinGroup, faceMaxGroup=faceMaxGroup,
8242
- showFaceLegend=showFaceLegend, faceLegendLabel=faceLegendLabel, faceLegendRank=faceLegendRank,
8243
- faceLegendGroup=faceLegendGroup,
8244
- intensityKey=intensityKey, intensities=intensities, colorScale=colorScale, mantissa=mantissa, tolerance=tolerance)
8282
+ showVertices=showVertices,
8283
+ vertexSize=vSize,
8284
+ vertexSizeKey=vertexSizeKey,
8285
+ vertexColor=vertexColor,
8286
+ vertexColorKey=vertexColorKey,
8287
+ vertexLabelKey=vertexLabelKey,
8288
+ showVertexLabel=showVertexLabel,
8289
+ vertexGroupKey=vertexGroupKey,
8290
+ vertexGroups=vertexGroups,
8291
+ vertexMinGroup=vertexMinGroup,
8292
+ vertexMaxGroup=vertexMaxGroup,
8293
+ showVertexLegend=showVertexLegend,
8294
+ vertexLegendLabel=str(i+1)+": "+name+" ("+vertexLegendLabel+")",
8295
+ vertexLegendRank=topology_counter+1,
8296
+ vertexLegendGroup=topology_counter+1,
8297
+ showEdges=showEdges,
8298
+ edgeWidth=eWidth,
8299
+ edgeWidthKey=edgeWidthKey,
8300
+ edgeColor=eColor,
8301
+ edgeColorKey=edgeColorKey,
8302
+ edgeLabelKey=edgeLabelKey,
8303
+ showEdgeLabel=showEdgeLabel,
8304
+ edgeGroupKey=edgeGroupKey,
8305
+ edgeGroups=edgeGroups,
8306
+ edgeMinGroup=edgeMinGroup,
8307
+ edgeMaxGroup=edgeMaxGroup,
8308
+ showEdgeLegend=showEdgeLegend,
8309
+ edgeLegendLabel=str(i+1)+": "+name+" ("+edgeLegendLabel+")",
8310
+ edgeLegendRank=topology_counter+2,
8311
+ edgeLegendGroup=topology_counter+2,
8312
+ showFaces=showFaces,
8313
+ faceOpacity=faceOpacity,
8314
+ faceOpacityKey=faceOpacityKey,
8315
+ faceColor=faceColor,
8316
+ faceColorKey=faceColorKey,
8317
+ faceLabelKey=faceLabelKey,
8318
+ faceGroupKey=faceGroupKey,
8319
+ faceGroups=faceGroups,
8320
+ faceMinGroup=faceMinGroup,
8321
+ faceMaxGroup=faceMaxGroup,
8322
+ showFaceLegend=showFaceLegend,
8323
+ faceLegendLabel=str(i+1)+": "+name+" ("+faceLegendLabel+")",
8324
+ faceLegendRank=topology_counter+3,
8325
+ faceLegendGroup=topology_counter+3,
8326
+ intensityKey=intensityKey,
8327
+ intensities=intensities,
8328
+ colorScale=colorScale,
8329
+ mantissa=mantissa,
8330
+ tolerance=tolerance)
8331
+ topology_counter += offset
8245
8332
  figure = Plotly.FigureByData(data=data, width=width, height=height,
8246
8333
  xAxis=xAxis, yAxis=yAxis, zAxis=zAxis, axisSize=axisSize,
8247
8334
  backgroundColor=backgroundColor,
@@ -9397,7 +9484,7 @@ class Topology():
9397
9484
  return topology.Type()
9398
9485
 
9399
9486
  @staticmethod
9400
- def TypeAsString(topology):
9487
+ def TypeAsString(topology, silent=False):
9401
9488
  """
9402
9489
  Returns the type of the input topology as a string.
9403
9490
 
@@ -9405,6 +9492,8 @@ class Topology():
9405
9492
  ----------
9406
9493
  topology : topologic_core.Topology
9407
9494
  The input topology.
9495
+ silent : bool , optional
9496
+ If set to True, no warnings or errors will be printed. The default is False.
9408
9497
 
9409
9498
  Returns
9410
9499
  -------
@@ -9412,10 +9501,13 @@ class Topology():
9412
9501
  The type of the topology as a string.
9413
9502
 
9414
9503
  """
9415
- if not Topology.IsInstance(topology, "Topology"):
9416
- print("Topology.TypeAsString - Error: The input topology parameter is not a valid topology. Returning None.")
9417
- return None
9418
- return topology.GetTypeAsString()
9504
+ if Topology.IsInstance(topology, "Graph"):
9505
+ return "Graph"
9506
+ elif Topology.IsInstance(topology, "Topology"):
9507
+ return topology.GetTypeAsString() # Hook to Core
9508
+ if not silent:
9509
+ print("Topology.TypeAsString - Error: The input topology parameter is not a valid topology or graph. Returning None.")
9510
+ return None
9419
9511
 
9420
9512
  @staticmethod
9421
9513
  def TypeID(name : str = None) -> int:
topologicpy/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.7.86'
1
+ __version__ = '0.7.87'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: topologicpy
3
- Version: 0.7.86
3
+ Version: 0.7.87
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
@@ -17,20 +17,20 @@ topologicpy/Helper.py,sha256=F3h4_qcOD_PHAoVe0tEbEE7_jYyVcaHjtwVs4QHOZuI,23978
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=RqGTQM_EUskQdp27Fbu-KY07ErKxaC0PCksLokB8c9s,113753
20
+ topologicpy/Plotly.py,sha256=Ld-VrYAn_FwONYwdVoz-7Kqt-5fs-qbVl35Utmcu7OE,114508
21
21
  topologicpy/Polyskel.py,sha256=EFsuh2EwQJGPLiFUjvtXmAwdX-A4r_DxP5hF7Qd3PaU,19829
22
22
  topologicpy/PyG.py,sha256=LU9LCCzjxGPUM31qbaJXZsTvniTtgugxJY7y612t4A4,109757
23
23
  topologicpy/Shell.py,sha256=UdDz3zfIYmGRjoZIseviJ2cXNtR5Kx5tIsZLhWMyO_U,87906
24
24
  topologicpy/Speckle.py,sha256=AlsGlSDuKRtX5jhVsPNSSjjbZis079HbUchDH_5RJmE,18187
25
25
  topologicpy/Sun.py,sha256=42tDWMYpwRG7Z2Qjtp94eRgBuqySq7k8TgNUZDK7QxQ,36837
26
- topologicpy/Topology.py,sha256=OUm83_hemDabm1gLIRGmfR190RCb-GadMm5BDBb69vE,438388
26
+ topologicpy/Topology.py,sha256=E683mKTwx4a1p1l6vN5KWFqX9gVJwV78S12EdtkfQjM,441297
27
27
  topologicpy/Vector.py,sha256=A1g83zDHep58iVPY8WQ8iHNrSOfGWFEzvVeDuMnjDNY,33078
28
28
  topologicpy/Vertex.py,sha256=sYWTbAHqKGRUAJRCIUqrCO_xFhvsXK09Sx7E4dafPLQ,73754
29
29
  topologicpy/Wire.py,sha256=HjagWKoJb8Z3zhgOij_4k6ZnKIl5gk8LletHbsT1ZKU,190632
30
30
  topologicpy/__init__.py,sha256=vlPCanUbxe5NifC4pHcnhSzkmmYcs_UrZrTlVMsxcFs,928
31
- topologicpy/version.py,sha256=onIpJHxNjXWvum-_t59rYALX7MwOFPIcP-4a76gL8N4,23
32
- topologicpy-0.7.86.dist-info/LICENSE,sha256=FK0vJ73LuE8PYJAn7LutsReWR47-Ooovw2dnRe5yV6Q,681
33
- topologicpy-0.7.86.dist-info/METADATA,sha256=evBDpufZw7KwLIkkWzkrLDnt5zwYmE_xz0AwHloe4g0,10513
34
- topologicpy-0.7.86.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
35
- topologicpy-0.7.86.dist-info/top_level.txt,sha256=J30bDzW92Ob7hw3zA8V34Jlp-vvsfIkGzkr8sqvb4Uw,12
36
- topologicpy-0.7.86.dist-info/RECORD,,
31
+ topologicpy/version.py,sha256=9To1hhHw5YQrfDyVdFvuKgwM_UIfjviXKudPl9B2kdE,23
32
+ topologicpy-0.7.87.dist-info/LICENSE,sha256=FK0vJ73LuE8PYJAn7LutsReWR47-Ooovw2dnRe5yV6Q,681
33
+ topologicpy-0.7.87.dist-info/METADATA,sha256=UWltJr_9E-eV2trZxj7ZsvXZlVD8GHtBWdIxgUvn6zM,10513
34
+ topologicpy-0.7.87.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
35
+ topologicpy-0.7.87.dist-info/top_level.txt,sha256=J30bDzW92Ob7hw3zA8V34Jlp-vvsfIkGzkr8sqvb4Uw,12
36
+ topologicpy-0.7.87.dist-info/RECORD,,