topologicpy 0.7.54__py3-none-any.whl → 0.7.56__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 +1 -6
- topologicpy/CellComplex.py +1 -6
- topologicpy/Dictionary.py +7 -3
- topologicpy/EnergyModel.py +6 -8
- topologicpy/Graph.py +160 -112
- topologicpy/Honeybee.py +2 -3
- topologicpy/Neo4j.py +285 -341
- topologicpy/Plotly.py +13 -10
- topologicpy/Topology.py +19 -488
- topologicpy/version.py +1 -1
- {topologicpy-0.7.54.dist-info → topologicpy-0.7.56.dist-info}/METADATA +1 -1
- {topologicpy-0.7.54.dist-info → topologicpy-0.7.56.dist-info}/RECORD +15 -15
- {topologicpy-0.7.54.dist-info → topologicpy-0.7.56.dist-info}/WHEEL +1 -1
- {topologicpy-0.7.54.dist-info → topologicpy-0.7.56.dist-info}/LICENSE +0 -0
- {topologicpy-0.7.54.dist-info → topologicpy-0.7.56.dist-info}/top_level.txt +0 -0
topologicpy/Honeybee.py
CHANGED
@@ -363,10 +363,9 @@ class Honeybee:
|
|
363
363
|
hbRoomFacePoints.append(Point3D(Vertex.X(tpVertex, mantissa=mantissa), Vertex.Y(tpVertex, mantissa=mantissa), Vertex.Z(tpVertex, mantissa=mantissa)))
|
364
364
|
hbRoomFace = HBFace(tpCellName+'_Face_'+str(tpFaceNumber+1), Face3D(hbRoomFacePoints))
|
365
365
|
tpFaceApertures = []
|
366
|
-
|
366
|
+
tpFaceApertures = Topology.Apertures(tpCellFace)
|
367
367
|
if tpFaceApertures:
|
368
|
-
for tpFaceApertureNumber,
|
369
|
-
apertureTopology = Aperture.Topology(tpFaceAperture)
|
368
|
+
for tpFaceApertureNumber, apertureTopology in enumerate(tpFaceApertures):
|
370
369
|
tpFaceApertureDictionary = Topology.Dictionary(apertureTopology)
|
371
370
|
if tpFaceApertureDictionary:
|
372
371
|
apertureKeyName = getKeyName(tpFaceApertureDictionary, apertureTypeKey)
|