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/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
- _ = tpCellFace.Apertures(tpFaceApertures)
366
+ tpFaceApertures = Topology.Apertures(tpCellFace)
367
367
  if tpFaceApertures:
368
- for tpFaceApertureNumber, tpFaceAperture in enumerate(tpFaceApertures):
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)