Skip to content

Commit

Permalink
fix ep window orientation
Browse files Browse the repository at this point in the history
  • Loading branch information
Taoning Wang committed Oct 26, 2023
1 parent 87e9fc4 commit f252b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frads/ep2rad.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ def _process_fenestration(
self, name: str, fenestration: FenestrationSurfaceDetailed, zone_center: np.ndarray
) -> Tuple[Polygon, pr.Primitive]:
fenenstration_polygon = fenestration_to_polygon(fenestration)
if not check_outward(fenenstration_polygon, zone_center):
if check_outward(fenenstration_polygon, zone_center):
fenenstration_polygon = fenenstration_polygon.flip()
_construction = self.constructions[fenestration.construction_name]
if _construction.type == "cfs":
Expand Down

0 comments on commit f252b30

Please sign in to comment.