topologicpy 0.7.45__py3-none-any.whl → 0.7.46__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/Graph.py +5 -3
- topologicpy/version.py +1 -1
- {topologicpy-0.7.45.dist-info → topologicpy-0.7.46.dist-info}/METADATA +2 -2
- {topologicpy-0.7.45.dist-info → topologicpy-0.7.46.dist-info}/RECORD +7 -7
- {topologicpy-0.7.45.dist-info → topologicpy-0.7.46.dist-info}/LICENSE +0 -0
- {topologicpy-0.7.45.dist-info → topologicpy-0.7.46.dist-info}/WHEEL +0 -0
- {topologicpy-0.7.45.dist-info → topologicpy-0.7.46.dist-info}/top_level.txt +0 -0
topologicpy/Graph.py
CHANGED
@@ -1389,9 +1389,10 @@ class Graph:
|
|
1389
1389
|
# Add edges based on the adjacency matrix
|
1390
1390
|
edges = []
|
1391
1391
|
for i in range(len(adjacencyMatrix)):
|
1392
|
-
for j in range(
|
1393
|
-
if not
|
1394
|
-
|
1392
|
+
for j in range(len(adjacencyMatrix)):
|
1393
|
+
if not i == j:
|
1394
|
+
if not adjacencyMatrix[i][j] == 0:
|
1395
|
+
edges.append(Edge.ByVertices([vertices[i], vertices[j]]))
|
1395
1396
|
|
1396
1397
|
return Graph.ByVerticesEdges(vertices, edges)
|
1397
1398
|
|
@@ -4318,6 +4319,7 @@ class Graph:
|
|
4318
4319
|
d = Graph.TopologicalDistance(graph, va, vb, tolerance)
|
4319
4320
|
top_dist += d
|
4320
4321
|
if top_dist == 0:
|
4322
|
+
print("Topological Distance is Zero!!")
|
4321
4323
|
scores.append(0)
|
4322
4324
|
else:
|
4323
4325
|
scores.append(round((n-1)/top_dist, mantissa))
|
topologicpy/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = '0.7.
|
1
|
+
__version__ = '0.7.46'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: topologicpy
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.46
|
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
|
@@ -49,7 +49,7 @@ Requires-Dist: pytest-xdist >=2.4.0 ; extra == 'test'
|
|
49
49
|
|
50
50
|
<img src="https://topologic.app/wp-content/uploads/2023/02/topologicpy-logo-no-loop.gif" alt="topologicpy logo" width="250" loop="1">
|
51
51
|
|
52
|
-
# An
|
52
|
+
# An AI-Powered Spatial Modelling and Analysis Software Library for Architecture, Engineering, and Construction
|
53
53
|
|
54
54
|
## Introduction
|
55
55
|
Welcome to topologicpy (rhymes with apple pie). topologicpy is an open-source python 3 implementation of [Topologic](https://topologic.app) which is a powerful spatial modelling and analysis software library that revolutionizes the way you design architectural spaces, buildings, and artefacts. Topologic's advanced features enable you to create hierarchical and topological information-rich 3D representations that offer unprecedented flexibility and control in your design process. With the integration of geometry, topology, information, and artificial intelligence, Topologic enriches Building Information Models with Building *Intelligence* Models.
|
@@ -10,7 +10,7 @@ topologicpy/Dictionary.py,sha256=KqJ29YyE23Y3Xc6XmKLSCZXRfBvm-OEOxlMZ4dt-rfM,270
|
|
10
10
|
topologicpy/Edge.py,sha256=vhYHkobSLGSWV-oe2oJFFDobqFToDyb7s71yQ840AAA,65166
|
11
11
|
topologicpy/EnergyModel.py,sha256=XcCP55VW5WHDIIKcURijmBOZEgNUDEn_V9h5EejkntA,53876
|
12
12
|
topologicpy/Face.py,sha256=pn0LGusTPKLrHEMhY94_Bs3rc4wUpIyEqyW9q-ftdG0,115379
|
13
|
-
topologicpy/Graph.py,sha256=
|
13
|
+
topologicpy/Graph.py,sha256=WSnzXQ2Zy7J6WrzhMAvqChCKUHccwsJ2S6fMPCE9d5k,401706
|
14
14
|
topologicpy/Grid.py,sha256=3-sn7CHWGcXk18XCnHjsUttNJTWwmN63g_Insj__p04,18218
|
15
15
|
topologicpy/Helper.py,sha256=i-AfI29NMsZXBaymjilfvxQbuS3wpYbpPw4RWu1YCHs,16358
|
16
16
|
topologicpy/Honeybee.py,sha256=vcBECJlgWVjNNdD9ZmjNik_pA1Y_ZNoOorsQb2CiyGA,21965
|
@@ -27,9 +27,9 @@ topologicpy/Vector.py,sha256=WQQUbwrg7VKImtxuBUi2i-FRiPT77WlrzLP05gdXKM8,33079
|
|
27
27
|
topologicpy/Vertex.py,sha256=EQdVYHmW85_pZdHZB3N8pEi0GiadCCkF3z_oqohA7B0,71161
|
28
28
|
topologicpy/Wire.py,sha256=9EJE0Iq3nGz5X7Suy6xxjmuOpfV49By6WH98UAL_7m4,153532
|
29
29
|
topologicpy/__init__.py,sha256=D7ky87CAQMiS2KE6YLvcTLkTgA2PY7rASe6Z23pjp9k,872
|
30
|
-
topologicpy/version.py,sha256=
|
31
|
-
topologicpy-0.7.
|
32
|
-
topologicpy-0.7.
|
33
|
-
topologicpy-0.7.
|
34
|
-
topologicpy-0.7.
|
35
|
-
topologicpy-0.7.
|
30
|
+
topologicpy/version.py,sha256=KS8XMe6gtPTpXK_NuIsgQNydQGzAwZnWmO4_bKiEme0,23
|
31
|
+
topologicpy-0.7.46.dist-info/LICENSE,sha256=BRNw73R2WdDBICtwhI3wm3cxsaVqLTAGuRwrTltcfxs,1068
|
32
|
+
topologicpy-0.7.46.dist-info/METADATA,sha256=42EcbfaksmdqQVvLq3CqNLHTn-rvIV0e1jCBXyFQz4A,10918
|
33
|
+
topologicpy-0.7.46.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
|
34
|
+
topologicpy-0.7.46.dist-info/top_level.txt,sha256=J30bDzW92Ob7hw3zA8V34Jlp-vvsfIkGzkr8sqvb4Uw,12
|
35
|
+
topologicpy-0.7.46.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|