topologicpy 0.8.22__py3-none-any.whl → 0.8.24__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/Matrix.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024
1
+ # Copyright (C) 2025
2
2
  # Wassim Jabi <wassim.jabi@gmail.com>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify it under
topologicpy/Neo4j.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024
1
+ # Copyright (C) 2025
2
2
  # Wassim Jabi <wassim.jabi@gmail.com>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify it under
topologicpy/Plotly.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024
1
+ # Copyright (C) 2025
2
2
  # Wassim Jabi <wassim.jabi@gmail.com>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify it under
@@ -511,7 +511,7 @@ class Plotly:
511
511
  borderSizes = []
512
512
  for i in range(len(vertices)):
513
513
  sizes.append(size)
514
- labels.append("Vertex_"+str(i+1).zfill(n))
514
+ labels.append("")
515
515
  colors.append(Color.AnyToHex(color))
516
516
  borderColors.append(borderColor)
517
517
  borderSizes.append(size+borderWidth*2)
@@ -543,7 +543,7 @@ class Plotly:
543
543
  if not temp_color == None:
544
544
  colors[m] = Color.AnyToHex(temp_color)
545
545
  if not labelKey == None:
546
- labels[m] = str(Dictionary.ValueAtKey(d, key=labelKey)) or labels[m]
546
+ labels[m] = Dictionary.ValueAtKey(d, key=labelKey, defaultValue=" ")
547
547
  if not sizeKey == None:
548
548
  sizes[m] = Dictionary.ValueAtKey(d, key=sizeKey)
549
549
  if sizes[m] == None:
topologicpy/Polyskel.py CHANGED
@@ -210,7 +210,7 @@ def skeletonize(polygon, holes=None):
210
210
 
211
211
 
212
212
 
213
- # # Copyright (C) 2024
213
+ # # Copyright (C) 2025
214
214
  # # Wassim Jabi <wassim.jabi@gmail.com>
215
215
  # #
216
216
  # # This program is free software: you can redistribute it and/or modify it under
topologicpy/PyG.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024
1
+ # Copyright (C) 2025
2
2
  # Wassim Jabi <wassim.jabi@gmail.com>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify it under
topologicpy/Shell.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024
1
+ # Copyright (C) 2025
2
2
  # Wassim Jabi <wassim.jabi@gmail.com>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify it under
topologicpy/Speckle.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024
1
+ # Copyright (C) 2025
2
2
  # Wassim Jabi <wassim.jabi@gmail.com>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify it under
topologicpy/Sun.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024
1
+ # Copyright (C) 2025
2
2
  # Wassim Jabi <wassim.jabi@gmail.com>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify it under
topologicpy/Topology.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024
1
+ # Copyright (C) 2025
2
2
  # Wassim Jabi <wassim.jabi@gmail.com>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify it under
@@ -846,7 +846,7 @@ class Topology():
846
846
  return apTopologies
847
847
 
848
848
  @staticmethod
849
- def Union(topologyA, topologyB, tranDict=False, tolerance=0.0001):
849
+ def Union(topologyA, topologyB, tranDict: bool = False, tolerance: float = 0.0001, silent: bool = False):
850
850
  """
851
851
  See Topology.Boolean()
852
852
 
@@ -879,15 +879,15 @@ class Topology():
879
879
  else:
880
880
  internal_boundaries.append(eb)
881
881
  return Face.ByWires(external_boundary, internal_boundaries)
882
- return Topology.Boolean(topologyA, topologyB, operation="union", tranDict=tranDict, tolerance=tolerance)
882
+ return Topology.Boolean(topologyA, topologyB, operation="union", tranDict=tranDict, tolerance=tolerance, silent=silent)
883
883
 
884
884
  @staticmethod
885
- def Difference(topologyA, topologyB, tranDict=False, tolerance=0.0001):
885
+ def Difference(topologyA, topologyB, tranDict: bool = False, tolerance: float = 0.0001, silent: bool = False):
886
886
  """
887
887
  See Topology.Boolean().
888
888
 
889
889
  """
890
- return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="difference", tranDict=tranDict, tolerance=tolerance)
890
+ return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="difference", tranDict=tranDict, tolerance=tolerance, silent=silent)
891
891
 
892
892
  @staticmethod
893
893
  def ExternalBoundary(topology):
@@ -1006,63 +1006,63 @@ class Topology():
1006
1006
  return Topology.SelfMerge(Topology.SelfMerge(Cluster.ByTopologies(results)))
1007
1007
 
1008
1008
  @staticmethod
1009
- def SymmetricDifference(topologyA, topologyB, tranDict=False, tolerance=0.0001):
1009
+ def SymmetricDifference(topologyA, topologyB, tranDict: bool = False, tolerance: float = 0.0001, silent: bool = False):
1010
1010
  """
1011
1011
  See Topology.Boolean().
1012
1012
 
1013
1013
  """
1014
- return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="symdif", tranDict=tranDict, tolerance=tolerance)
1014
+ return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="symdif", tranDict=tranDict, tolerance=tolerance, silent=silent)
1015
1015
 
1016
1016
  @staticmethod
1017
- def SymDif(topologyA, topologyB, tranDict=False, tolerance=0.0001):
1017
+ def SymDif(topologyA, topologyB, tranDict: bool = False, tolerance: float = 0.0001, silent: bool = False):
1018
1018
  """
1019
1019
  See Topology.Boolean().
1020
1020
 
1021
1021
  """
1022
- return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="symdif", tranDict=tranDict, tolerance=tolerance)
1022
+ return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="symdif", tranDict=tranDict, tolerance=tolerance, silent=silent)
1023
1023
 
1024
1024
  @staticmethod
1025
- def XOR(topologyA, topologyB, tranDict=False, tolerance=0.0001):
1025
+ def XOR(topologyA, topologyB, tranDict: bool = False, tolerance: float = 0.0001, silent: bool = False):
1026
1026
  """
1027
1027
  See Topology.Boolean().
1028
1028
 
1029
1029
  """
1030
- return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="symdif", tranDict=tranDict, tolerance=tolerance)
1030
+ return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="symdif", tranDict=tranDict, tolerance=tolerance, silent=silent)
1031
1031
 
1032
1032
  @staticmethod
1033
- def Merge(topologyA, topologyB, tranDict=False, tolerance=0.0001):
1033
+ def Merge(topologyA, topologyB, tranDict: bool = False, tolerance: float = 0.0001, silent: bool = False):
1034
1034
  """
1035
1035
  See Topology.Boolean().
1036
1036
 
1037
1037
  """
1038
- return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="merge", tranDict=tranDict, tolerance=tolerance)
1038
+ return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="merge", tranDict=tranDict, tolerance=tolerance, silent=silent)
1039
1039
 
1040
1040
  @staticmethod
1041
- def Slice(topologyA, topologyB, tranDict=False, tolerance=0.0001):
1041
+ def Slice(topologyA, topologyB, tranDict: bool = False, tolerance: float = 0.0001, silent: bool = False):
1042
1042
  """
1043
1043
  See Topology.Boolean().
1044
1044
 
1045
1045
  """
1046
- return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="slice", tranDict=tranDict, tolerance=tolerance)
1046
+ return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="slice", tranDict=tranDict, tolerance=tolerance, silent=silent)
1047
1047
 
1048
1048
  @staticmethod
1049
- def Impose(topologyA, topologyB, tranDict=False, tolerance=0.0001):
1049
+ def Impose(topologyA, topologyB, tranDict: bool = False, tolerance: float = 0.0001, silent: bool = False):
1050
1050
  """
1051
1051
  See Topology.Boolean().
1052
1052
 
1053
1053
  """
1054
- return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="impose", tranDict=tranDict, tolerance=tolerance)
1054
+ return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="impose", tranDict=tranDict, tolerance=tolerance, silent=silent)
1055
1055
 
1056
1056
  @staticmethod
1057
- def Imprint(topologyA, topologyB, tranDict=False, tolerance=0.0001):
1057
+ def Imprint(topologyA, topologyB, tranDict: bool = False, tolerance: float = 0.0001, silent: bool = False):
1058
1058
  """
1059
1059
  See Topology.Boolean().
1060
1060
 
1061
1061
  """
1062
- return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="imprint", tranDict=tranDict, tolerance=tolerance)
1062
+ return Topology.Boolean(topologyA=topologyA, topologyB=topologyB, operation="imprint", tranDict=tranDict, tolerance=tolerance, silent=silent)
1063
1063
 
1064
1064
  @staticmethod
1065
- def Boolean(topologyA, topologyB, operation="union", tranDict=False, tolerance=0.0001):
1065
+ def Boolean(topologyA, topologyB, operation: str = "union", tranDict: bool = False, tolerance: float = 0.0001, silent: bool = False):
1066
1066
  """
1067
1067
  Execute the input boolean operation type on the input operand topologies and return the result. See https://en.wikipedia.org/wiki/Boolean_operation.
1068
1068
 
@@ -1078,6 +1078,8 @@ class Topology():
1078
1078
  If set to True the dictionaries of the operands are merged and transferred to the result. The default is False.
1079
1079
  tolerance : float , optional
1080
1080
  The desired tolerance. The default is 0.0001.
1081
+ silent : bool , optional
1082
+ If set to True, no error and warning messages are printed. Otherwise, they are. The default is False.
1081
1083
 
1082
1084
  Returns
1083
1085
  -------
@@ -1087,23 +1089,26 @@ class Topology():
1087
1089
  """
1088
1090
  from topologicpy.Dictionary import Dictionary
1089
1091
  if not Topology.IsInstance(topologyA, "Topology"):
1090
- print("Topology.Boolean - Error: the input topologyA parameter is not a valid topology. Returning None.")
1092
+ if not silent:
1093
+ print("Topology.Boolean - Error: the input topologyA parameter is not a valid topology. Returning None.")
1091
1094
  return None
1092
1095
  if not Topology.IsInstance(topologyB, "Topology"):
1093
- print("Topology.Boolean - Error: the input topologyB parameter is not a valid topology. Returning None.")
1096
+ if not silent:
1097
+ print("Topology.Boolean - Error: the input topologyB parameter is not a valid topology. Returning None.")
1094
1098
  return None
1095
1099
  if not isinstance(operation, str):
1096
- print("Topology.Boolean - Error: the input operation parameter is not a valid string. Returning None.")
1100
+ if not silent:
1101
+ print("Topology.Boolean - Error: the input operation parameter is not a valid string. Returning None.")
1097
1102
  return None
1098
1103
  if not operation.lower() in ["union", "difference", "intersect", "symdif", "merge", "slice", "impose", "imprint"]:
1099
- print("Topology.Boolean - Error: the input operation parameter is not a recognized operation. Returning None.")
1104
+ if not silent:
1105
+ print("Topology.Boolean - Error: the input operation parameter is not a recognized operation. Returning None.")
1100
1106
  return None
1101
1107
  if not isinstance(tranDict, bool):
1102
- print("Topology.Boolean - Error: the input tranDict parameter is not a valid boolean. Returning None.")
1108
+ if not silent:
1109
+ print("Topology.Boolean - Error: the input tranDict parameter is not a valid boolean. Returning None.")
1103
1110
  return None
1104
1111
  topologyC = None
1105
- #topologyC = Topology.Intersect(topologyA, topologyB)
1106
- #try:
1107
1112
  if operation.lower() == "union":
1108
1113
  topologyC = topologyA.Union(topologyB, False)
1109
1114
  elif operation.lower() == "difference":
topologicpy/Vector.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024
1
+ # Copyright (C) 2025
2
2
  # Wassim Jabi <wassim.jabi@gmail.com>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify it under
topologicpy/Vertex.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024
1
+ # Copyright (C) 2025
2
2
  # Wassim Jabi <wassim.jabi@gmail.com>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify it under
topologicpy/Wire.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024
1
+ # Copyright (C) 2025
2
2
  # Wassim Jabi <wassim.jabi@gmail.com>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify it under
topologicpy/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024
1
+ # Copyright (C) 2025
2
2
  # Wassim Jabi <wassim.jabi@gmail.com>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify it under
topologicpy/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.8.22'
1
+ __version__ = '0.8.24'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: topologicpy
3
- Version: 0.8.22
3
+ Version: 0.8.24
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
@@ -0,0 +1,37 @@
1
+ topologicpy/ANN.py,sha256=DrNAhNHp-jSvsPc1fb7KVPU46cYmejAvghhknOM430Y,47932
2
+ topologicpy/Aperture.py,sha256=wNn5miB_IrGCBYuQ18HXQYRva20dUC3id4AJCulL7to,2723
3
+ topologicpy/BVH.py,sha256=PAezG_P_W5_FUjUGB-HRRb4bzesE9DW89G2Vm-6ChWw,12932
4
+ topologicpy/CSG.py,sha256=6vawdxs0_r7i9ElnwDO1Mouv_yPOTBr_4IhBnfVsBHk,15680
5
+ topologicpy/Cell.py,sha256=F8ifMa-3NI5GYRx86J0cokgdoLduBiaw5DIKQFMHtCs,119904
6
+ topologicpy/CellComplex.py,sha256=5O15NirkK2M1AvNcq9Z8N5lNb-hD9kGNXIJXWJJuj7k,59931
7
+ topologicpy/Cluster.py,sha256=BSaLcHe4TinFTIwjFo4660rPX2y9Lqly2hv48WCq6fE,58606
8
+ topologicpy/Color.py,sha256=ZVVQRKGjebY9aOU1gpN_AbssdRRiVKlZV3f8TrsTNgg,20307
9
+ topologicpy/Context.py,sha256=G3CwMvN8Jw2rnQRwB-n4MaQq_wLS0vPimbXKwsdMJ80,3055
10
+ topologicpy/DGL.py,sha256=HQXy9iDnrvWGDxaBfe5pRbweQ2zLBvAf6UdjfhKkQYI,139041
11
+ topologicpy/Dictionary.py,sha256=Lf24WHW8q_RCq0l8VpT3XJTn6UuStY66JI4Lb4W08jI,34126
12
+ topologicpy/Edge.py,sha256=pu4tZbRbK8qx2oqRbwHAeKuwU2X8JFGPSJjJMTJw8Q0,71418
13
+ topologicpy/EnergyModel.py,sha256=Pyb28gDDwhzlQIH0xqAygqS0P3SJxWyyV7OWS_AAfRs,53856
14
+ topologicpy/Face.py,sha256=7K46gB_UIKjKEKyzyY0JqGarqjwjH0ggS-JQTpDtWC4,184847
15
+ topologicpy/Graph.py,sha256=BCd6Zv_4J_-WRIP6nyX5FiqnJG1kDynGYelpN5y5S3g,552547
16
+ topologicpy/Grid.py,sha256=qRnFUvs079zMOZ6COWzBX6408niI7HyNz-BM0VRguXY,18245
17
+ topologicpy/Helper.py,sha256=JdvC30WMrla46mTj5TdwCV_bRv-6y8vK5Bkx0prluy4,29100
18
+ topologicpy/Honeybee.py,sha256=yctkwfdupKnp7bAOjP1Z4YaYpRrWoMEb4gz9Z5zaWwE,21751
19
+ topologicpy/Matrix.py,sha256=BHGDRkBn1pf5DkRoY8feAhDGHTF3bjFM4jluiEb_A0w,22779
20
+ topologicpy/Neo4j.py,sha256=vNMaqTWerwr-3luLjYEXNhf8T97aFee6x5sIKBHY73s,22392
21
+ topologicpy/Plotly.py,sha256=eHTKT8vOHJDLwH4xypj52atGLR0dGic45d-BiPA55Q8,119219
22
+ topologicpy/Polyskel.py,sha256=oVfM4lqSMPTjnkHfsRU9VI8Blt6Vf0LVPkD9ebz7Wmw,27082
23
+ topologicpy/PyG.py,sha256=zvV6jtnol_aFiN6JRoMpYwBVfOU2aFs9gdWSdEo6mtU,109757
24
+ topologicpy/Shell.py,sha256=3zUSf0VfkAF73ZyTYNWYW21x4-vyfi7JkYu_r5GTVIc,87983
25
+ topologicpy/Speckle.py,sha256=-eiTqJugd7pHiHpD3pDUcDO6CGhVyPV14HFRzaqEoaw,18187
26
+ topologicpy/Sun.py,sha256=_VBBAUIDhvpkp72JBZlv7k9qx9jYubm3yM56UZ1Nc6c,36837
27
+ topologicpy/Topology.py,sha256=BKiVJ-R5FfwXJ2FYp1V8pjaPoMxRm83MGe2RzBx0_tQ,479205
28
+ topologicpy/Vector.py,sha256=mx7fgABdioikPWM9HzXKzmqfx3u_XBcU_jlLD4qK2x8,42407
29
+ topologicpy/Vertex.py,sha256=PIwfbA7_TxK_dSGlSeM5mson97TRr4dYrfZyOLgO150,80913
30
+ topologicpy/Wire.py,sha256=eRs4PM7h4yU5v6umPh0oBJR4cN8BwsqlVroaFdnvK4w,228499
31
+ topologicpy/__init__.py,sha256=RMftibjgAnHB1vdL-muo71RwMS4972JCxHuRHOlU428,928
32
+ topologicpy/version.py,sha256=c2VEZxOAKtWAyut3MMeHAIgcw2hpB1b9V0vR0y8Apb4,23
33
+ topologicpy-0.8.24.dist-info/licenses/LICENSE,sha256=FK0vJ73LuE8PYJAn7LutsReWR47-Ooovw2dnRe5yV6Q,681
34
+ topologicpy-0.8.24.dist-info/METADATA,sha256=RrGSLhJbNeivQQeKBNJUDMaYmKToe__QsEBWtR5sFEg,10535
35
+ topologicpy-0.8.24.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
36
+ topologicpy-0.8.24.dist-info/top_level.txt,sha256=J30bDzW92Ob7hw3zA8V34Jlp-vvsfIkGzkr8sqvb4Uw,12
37
+ topologicpy-0.8.24.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.0.1)
2
+ Generator: setuptools (80.3.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,36 +0,0 @@
1
- topologicpy/ANN.py,sha256=m_WxD1lgQqDhUpaM20Lia6TmJACDYaAE96wigsi-99U,47932
2
- topologicpy/Aperture.py,sha256=p9pUzTQSBWoUaDiug1V1R1hnEIEwYSXFg2t7iRAmNRY,2723
3
- topologicpy/BVH.py,sha256=1q2lR5eDs7Wnwv7M-Kr7Cj3GG_iy7d1ddaZqWGHdX-w,12932
4
- topologicpy/Cell.py,sha256=BN6hjYpN6Fse0mn7d7oHh65D7c6Mt1Yu7iK3lEp_Cj0,118262
5
- topologicpy/CellComplex.py,sha256=udDzbMub3d2QYn1XGMzt3F9Su2VXuAGvn0eoTtOIn3g,58207
6
- topologicpy/Cluster.py,sha256=o5jdMRpcGfSGGiXQdFg-e9XcnBF5AqTj3xb1nSpwJWE,58606
7
- topologicpy/Color.py,sha256=q9xsGmxFMz7sQKmygwSVS12GaTRB-OT0-_i6t3-cthE,20307
8
- topologicpy/Context.py,sha256=ppApYKngZZCQBFWaxIMi2z2dokY23c935IDCBosxDAE,3055
9
- topologicpy/DGL.py,sha256=M_znFtyPBJJz-iXLYZs2wwBj24fhevIo739dGha0chM,139041
10
- topologicpy/Dictionary.py,sha256=TO5Ar9j_xUSV325MYbUHdNrKfgo9VcehcZCeZWAn6b0,34126
11
- topologicpy/Edge.py,sha256=yxkCVDYBflJNEYxnjMmlyvbkpg8TNy7y5bSH3yQ4jzs,71418
12
- topologicpy/EnergyModel.py,sha256=UoQ9Jm-hYsN383CbcLKw-y6BKitRHj0uyh84yQ-8ACg,53856
13
- topologicpy/Face.py,sha256=SlhB8L7BpDjd4a9YZE4UJ3zoGuF1oq9MSpuesEWro_Q,184847
14
- topologicpy/Graph.py,sha256=c2VvEvEM3hGgFR6xP-A58HXcgEVnPyA_heFOoNZ4p_Y,527640
15
- topologicpy/Grid.py,sha256=2s9cSlWldivn1i9EUz4OOokJyANveqmRe_vR93CAndI,18245
16
- topologicpy/Helper.py,sha256=4H5KPiv_eiEs489UOOyGLe9RaeoZIfmMh3mk_YCHmXg,29100
17
- topologicpy/Honeybee.py,sha256=uDVtDbloydNoaBFcSNukKL_2PLyD6XKkCp1VHz1jtaU,21751
18
- topologicpy/Matrix.py,sha256=i22RLP5ebUAMuU7V1tZ__Z4lf1pg9fzq9nENsDZUV74,22779
19
- topologicpy/Neo4j.py,sha256=BKOF29fRgXmdpMGkrNzuYbyqgCJ6ElPPMYlfTxXiVbc,22392
20
- topologicpy/Plotly.py,sha256=gSe3tWLgF75-rPDjqw7riUIJpv0j_K7hedoxi3-OptE,119244
21
- topologicpy/Polyskel.py,sha256=ro5in--VT_uag55r5xymU5ufyAahsovIiJwyiqG_qH8,27082
22
- topologicpy/PyG.py,sha256=LU9LCCzjxGPUM31qbaJXZsTvniTtgugxJY7y612t4A4,109757
23
- topologicpy/Shell.py,sha256=--dJoSdz6BapxVEyG2DI0W5apO_xwLORj5qmR15yl2Y,87983
24
- topologicpy/Speckle.py,sha256=AlsGlSDuKRtX5jhVsPNSSjjbZis079HbUchDH_5RJmE,18187
25
- topologicpy/Sun.py,sha256=42tDWMYpwRG7Z2Qjtp94eRgBuqySq7k8TgNUZDK7QxQ,36837
26
- topologicpy/Topology.py,sha256=QY195KZ5EostlGRnsPGSFglRIU0tunD2CiwsFPfpOqY,478447
27
- topologicpy/Vector.py,sha256=GkGt-aJ591IJ2IPffMAudvITLDPi2qZibZc4UAav6m8,42407
28
- topologicpy/Vertex.py,sha256=q99IrWwdNlvVfUXz6iP8icmP8NzP2nsiqtgnF9Jnpx8,80913
29
- topologicpy/Wire.py,sha256=IVPzBKsckuxC-rHvwxmvtVF7PpApz2lhPHomtQMo_kg,228499
30
- topologicpy/__init__.py,sha256=vlPCanUbxe5NifC4pHcnhSzkmmYcs_UrZrTlVMsxcFs,928
31
- topologicpy/version.py,sha256=SuLneBfTbTDP--cc9ZcmXl_eRJruqxfxMHpHGiHHHZA,23
32
- topologicpy-0.8.22.dist-info/licenses/LICENSE,sha256=FK0vJ73LuE8PYJAn7LutsReWR47-Ooovw2dnRe5yV6Q,681
33
- topologicpy-0.8.22.dist-info/METADATA,sha256=9_VzttjULYoYaVn35tAzKn6Q7cf2l4mfnGKYkOE_tFo,10535
34
- topologicpy-0.8.22.dist-info/WHEEL,sha256=ooBFpIzZCPdw3uqIQsOo4qqbA4ZRPxHnOH7peeONza0,91
35
- topologicpy-0.8.22.dist-info/top_level.txt,sha256=J30bDzW92Ob7hw3zA8V34Jlp-vvsfIkGzkr8sqvb4Uw,12
36
- topologicpy-0.8.22.dist-info/RECORD,,