Skip to content

Commit

Permalink
fix(to_vtk): export indoor and outdoor room shades
Browse files Browse the repository at this point in the history
  • Loading branch information
devangcx committed Jan 6, 2022
1 parent 6817ebf commit ba11388
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions honeybee_vtk/to_vtk.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,12 @@ def convert_room(room: Room) -> List[PolyData]:
data = []
for face in room.faces:
data.extend(convert_face(face))
for shade in room.indoor_shades:
polydata = convert_shade(shade)
data.append(polydata)
for shade in room.outdoor_shades:
polydata = convert_shade(shade)
data.append(polydata)

return data

Expand Down

0 comments on commit ba11388

Please sign in to comment.