topologicpy 0.7.20__py3-none-any.whl → 0.7.21__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 +0 -12
- topologicpy/CellComplex.py +0 -2
- topologicpy/Matrix.py +0 -14
- topologicpy/version.py +1 -1
- {topologicpy-0.7.20.dist-info → topologicpy-0.7.21.dist-info}/METADATA +1 -1
- {topologicpy-0.7.20.dist-info → topologicpy-0.7.21.dist-info}/RECORD +9 -9
- {topologicpy-0.7.20.dist-info → topologicpy-0.7.21.dist-info}/LICENSE +0 -0
- {topologicpy-0.7.20.dist-info → topologicpy-0.7.21.dist-info}/WHEEL +0 -0
- {topologicpy-0.7.20.dist-info → topologicpy-0.7.21.dist-info}/top_level.txt +0 -0
topologicpy/Cell.py
CHANGED
@@ -988,8 +988,6 @@ class Cell():
|
|
988
988
|
def Dodecahedron(origin= None, radius: float = 0.5,
|
989
989
|
direction: list = [0, 0, 1], placement: str ="center", tolerance: float = 0.0001):
|
990
990
|
"""
|
991
|
-
Description
|
992
|
-
----------
|
993
991
|
Creates a dodecahedron. See https://en.wikipedia.org/wiki/Dodecahedron.
|
994
992
|
|
995
993
|
Parameters
|
@@ -1331,8 +1329,6 @@ class Cell():
|
|
1331
1329
|
def Icosahedron(origin= None, radius: float = 0.5,
|
1332
1330
|
direction: list = [0, 0, 1], placement: str ="center", tolerance: float = 0.0001):
|
1333
1331
|
"""
|
1334
|
-
Description
|
1335
|
-
----------
|
1336
1332
|
Creates an icosahedron. See https://en.wikipedia.org/wiki/Icosahedron.
|
1337
1333
|
|
1338
1334
|
Parameters
|
@@ -1500,8 +1496,6 @@ class Cell():
|
|
1500
1496
|
def Octahedron(origin= None, radius: float = 0.5,
|
1501
1497
|
direction: list = [0, 0, 1], placement: str ="center", tolerance: float = 0.0001):
|
1502
1498
|
"""
|
1503
|
-
Description
|
1504
|
-
----------
|
1505
1499
|
Creates an octahedron. See https://en.wikipedia.org/wiki/Octahedron.
|
1506
1500
|
|
1507
1501
|
Parameters
|
@@ -1562,8 +1556,6 @@ class Cell():
|
|
1562
1556
|
@staticmethod
|
1563
1557
|
def Pipe(edge, profile = None, radius: float = 0.5, sides: int = 16, startOffset: float = 0, endOffset: float = 0, endcapA = None, endcapB = None, mantissa: int = 6) -> dict:
|
1564
1558
|
"""
|
1565
|
-
Description
|
1566
|
-
----------
|
1567
1559
|
Creates a pipe along the input edge.
|
1568
1560
|
|
1569
1561
|
Parameters
|
@@ -1696,8 +1688,6 @@ class Cell():
|
|
1696
1688
|
def Prism(origin= None, width: float = 1, length: float = 1, height: float = 1, uSides: int = 1, vSides: int = 1, wSides: int = 1,
|
1697
1689
|
direction: list = [0, 0, 1], placement: str ="center", mantissa: int = 6, tolerance: float = 0.0001):
|
1698
1690
|
"""
|
1699
|
-
Description
|
1700
|
-
----------
|
1701
1691
|
Creates a prism.
|
1702
1692
|
|
1703
1693
|
Parameters
|
@@ -2017,8 +2007,6 @@ class Cell():
|
|
2017
2007
|
def Tetrahedron(origin= None, radius: float = 0.5,
|
2018
2008
|
direction: list = [0, 0, 1], placement: str ="center", tolerance: float = 0.0001):
|
2019
2009
|
"""
|
2020
|
-
Description
|
2021
|
-
----------
|
2022
2010
|
Creates a tetrahedron. See https://en.wikipedia.org/wiki/Tetrahedron.
|
2023
2011
|
|
2024
2012
|
Parameters
|
topologicpy/CellComplex.py
CHANGED
@@ -790,8 +790,6 @@ class CellComplex():
|
|
790
790
|
def Octahedron(origin= None, radius: float = 0.5,
|
791
791
|
direction: list = [0, 0, 1], placement: str ="center", tolerance: float = 0.0001):
|
792
792
|
"""
|
793
|
-
Description
|
794
|
-
----------
|
795
793
|
Creates an octahedron. See https://en.wikipedia.org/wiki/Octahedron.
|
796
794
|
|
797
795
|
Parameters
|
topologicpy/Matrix.py
CHANGED
@@ -20,8 +20,6 @@ class Matrix:
|
|
20
20
|
@staticmethod
|
21
21
|
def Add(matA, matB):
|
22
22
|
"""
|
23
|
-
Description
|
24
|
-
----------
|
25
23
|
Adds the two input matrices.
|
26
24
|
|
27
25
|
Parameters
|
@@ -52,8 +50,6 @@ class Matrix:
|
|
52
50
|
@staticmethod
|
53
51
|
def ByRotation(angleX=0, angleY=0, angleZ=0, order="xyz"):
|
54
52
|
"""
|
55
|
-
Description
|
56
|
-
----------
|
57
53
|
Creates a 4x4 rotation matrix.
|
58
54
|
|
59
55
|
Parameters
|
@@ -121,8 +117,6 @@ class Matrix:
|
|
121
117
|
@staticmethod
|
122
118
|
def ByScaling(scaleX=1.0, scaleY=1.0, scaleZ=1.0):
|
123
119
|
"""
|
124
|
-
Description
|
125
|
-
----------
|
126
120
|
Creates a 4x4 scaling matrix.
|
127
121
|
|
128
122
|
Parameters
|
@@ -148,8 +142,6 @@ class Matrix:
|
|
148
142
|
@staticmethod
|
149
143
|
def ByTranslation(translateX=0, translateY=0, translateZ=0):
|
150
144
|
"""
|
151
|
-
Description
|
152
|
-
----------
|
153
145
|
Creates a 4x4 translation matrix.
|
154
146
|
|
155
147
|
Parameters
|
@@ -175,8 +167,6 @@ class Matrix:
|
|
175
167
|
@staticmethod
|
176
168
|
def Multiply(matA, matB):
|
177
169
|
"""
|
178
|
-
Description
|
179
|
-
----------
|
180
170
|
Multiplies the two input matrices. When transforming an object, the first input matrix is applied first
|
181
171
|
then the second input matrix.
|
182
172
|
|
@@ -222,8 +212,6 @@ class Matrix:
|
|
222
212
|
@staticmethod
|
223
213
|
def Subtract(matA, matB):
|
224
214
|
"""
|
225
|
-
Description
|
226
|
-
----------
|
227
215
|
Subtracts the two input matrices.
|
228
216
|
|
229
217
|
Parameters
|
@@ -254,8 +242,6 @@ class Matrix:
|
|
254
242
|
@staticmethod
|
255
243
|
def Transpose(matrix):
|
256
244
|
"""
|
257
|
-
Description
|
258
|
-
----------
|
259
245
|
Transposes the input matrix.
|
260
246
|
|
261
247
|
Parameters
|
topologicpy/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = '0.7.
|
1
|
+
__version__ = '0.7.21'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: topologicpy
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.21
|
4
4
|
Summary: An Advanced Spatial Modelling and Analysis Software Library for Architecture, Engineering, and Construction.
|
5
5
|
Author-email: Wassim Jabi <wassim.jabi@gmail.com>
|
6
6
|
License: MIT License
|
@@ -1,7 +1,7 @@
|
|
1
1
|
topologicpy/ANN.py,sha256=H_L81-RLdmzL0wehqcZz9IUgRENFxIH7mYxS3aKL7oE,48982
|
2
2
|
topologicpy/Aperture.py,sha256=p9pUzTQSBWoUaDiug1V1R1hnEIEwYSXFg2t7iRAmNRY,2723
|
3
|
-
topologicpy/Cell.py,sha256=
|
4
|
-
topologicpy/CellComplex.py,sha256
|
3
|
+
topologicpy/Cell.py,sha256=2ePfxb8umij3A3wzOZRSF6fAKhc2bHhSnrXRlUo1Kts,99599
|
4
|
+
topologicpy/CellComplex.py,sha256=-f-O5lcz0nSNcjw89XYi3IYhZRrbzojG11dItpISI_U,47401
|
5
5
|
topologicpy/Cluster.py,sha256=HvomWm_V4bx76YMxqOEhAUrsvcU6z5e_zry6WxMuV2M,54819
|
6
6
|
topologicpy/Color.py,sha256=UlmRcCSOhqcM_OyMWz4t3Kr75KcgXDhz3uctAJ2n7Ic,18031
|
7
7
|
topologicpy/Context.py,sha256=ppApYKngZZCQBFWaxIMi2z2dokY23c935IDCBosxDAE,3055
|
@@ -14,7 +14,7 @@ topologicpy/Graph.py,sha256=tafjhTMr4cixcQnyj6FaIeDucc0SGTwn7kNFtnU4Q0U,391685
|
|
14
14
|
topologicpy/Grid.py,sha256=Cpzs9l5-SptMQbUR8AvbbIOHrGMGlK0Qx8FWmQBgvX0,18497
|
15
15
|
topologicpy/Helper.py,sha256=07V9IFu5ilMpvAdZVhIbdBOjBJSRTtJ0BfR1IoRaRXU,17743
|
16
16
|
topologicpy/Honeybee.py,sha256=dlr5OEH93q51ZmEgvi8PXGfCHBDAjIZ1cm38Rft1Bz4,20235
|
17
|
-
topologicpy/Matrix.py,sha256=
|
17
|
+
topologicpy/Matrix.py,sha256=umgR7An919-wGInXJ1wpqnoQ2jCPdyMe2rcWTZ16upk,8079
|
18
18
|
topologicpy/Neo4j.py,sha256=Gy2PS4Ky8BNhohKreoV4zgzW9OXCjhSwiZF_Aq21_wU,19589
|
19
19
|
topologicpy/Plotly.py,sha256=6ZYVAvSSDtoHZ7OsofIDwOKRDF_CTE_UOEzEtcxHAuU,98845
|
20
20
|
topologicpy/Polyskel.py,sha256=pNawz5lnvy4oTzCL91fGY2PblW2hmcYBdT5268m2RZs,19743
|
@@ -26,9 +26,9 @@ topologicpy/Vector.py,sha256=G4mIIcE5Y-EHfiNV_rxiOz8pJeV3NMEwLu5EOgM0gKA,32653
|
|
26
26
|
topologicpy/Vertex.py,sha256=bD3JnNhizbp6HFhHRve2LK_y5w27jytCbsagOLxKjZQ,71198
|
27
27
|
topologicpy/Wire.py,sha256=ujU77xbwsmZqMmlIhfAlmJsM32ZXWoxCSM7Pc7Yj4T0,144545
|
28
28
|
topologicpy/__init__.py,sha256=D7ky87CAQMiS2KE6YLvcTLkTgA2PY7rASe6Z23pjp9k,872
|
29
|
-
topologicpy/version.py,sha256=
|
30
|
-
topologicpy-0.7.
|
31
|
-
topologicpy-0.7.
|
32
|
-
topologicpy-0.7.
|
33
|
-
topologicpy-0.7.
|
34
|
-
topologicpy-0.7.
|
29
|
+
topologicpy/version.py,sha256=NtJ4aAFnc8NGqEqKfgzjO8aauC5wP3QyLOgRcSVICcQ,23
|
30
|
+
topologicpy-0.7.21.dist-info/LICENSE,sha256=BRNw73R2WdDBICtwhI3wm3cxsaVqLTAGuRwrTltcfxs,1068
|
31
|
+
topologicpy-0.7.21.dist-info/METADATA,sha256=161Kl1mK0XdOw4dxCmk1UmiBxctwWgcLI0d_-UE56IU,10916
|
32
|
+
topologicpy-0.7.21.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
33
|
+
topologicpy-0.7.21.dist-info/top_level.txt,sha256=J30bDzW92Ob7hw3zA8V34Jlp-vvsfIkGzkr8sqvb4Uw,12
|
34
|
+
topologicpy-0.7.21.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|