Skip to content

Commit

Permalink
fix(face): Shorten rectangle identifier to better support DOE-2
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Apr 27, 2024
1 parent 90b7548 commit 87095cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion honeybee/face.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ def rectangularize_apertures(
exist_ap = old_ap
break
if exist_ap is None: # could not be matched; just make a new aperture
new_ap = Aperture('{}_RectGlz{}'.format(self.identifier, i), ap_face)
new_ap = Aperture('{}_RGlz{}'.format(self.identifier, i), ap_face)
else:
new_ap = Aperture(exist_ap.identifier, ap_face,
is_operable=exist_ap.is_operable)
Expand Down

0 comments on commit 87095cb

Please sign in to comment.