Skip to content

Commit

Permalink
fix(geometry): fix the check for tilted walls
Browse files Browse the repository at this point in the history
  • Loading branch information
mostaphaRoudsari committed May 29, 2023
1 parent 849dc05 commit 53b11a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion honeybee_idaice/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def room_to_idm(room: Room):

protected = False
for w in walls:
if abs(w.altitude) <= 0.1:
if abs(w.altitude) > 5:
# non-vertical wall
protected = True
break
Expand Down

0 comments on commit 53b11a3

Please sign in to comment.