Skip to content

Commit

Permalink
fix(window): Fix typo in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Nov 6, 2024
1 parent 890de66 commit 03dc60c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dragonfly/windowparameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2328,7 +2328,7 @@ def add_window_to_face(self, face, tolerance=0.01):
if max_height > tol2 and max_width > tol2:
min_pt, max_pt = p_gon.min, p_gon.max
if not (max_pt.x < tolerance or max_pt.y < tolerance or
min_pt.x > max_width or min_pt.y > max_width):
min_pt.x > max_width or min_pt.y > max_height):
clean_polygons.append(new_verts)
clean_are_doors.append(is_dr)
kept_i.append(i)
Expand Down

0 comments on commit 03dc60c

Please sign in to comment.