From 1a2d1237da0b46f8cc0dddeaccee3c7f1036381d Mon Sep 17 00:00:00 2001 From: Ethan Peterson Date: Thu, 16 Feb 2023 12:27:15 -0500 Subject: [PATCH] Update openmc/model/surface_composite.py Co-authored-by: Jonathan Shimwell --- openmc/model/surface_composite.py | 1 - 1 file changed, 1 deletion(-) diff --git a/openmc/model/surface_composite.py b/openmc/model/surface_composite.py index 044ecf61e..09c2f4fee 100644 --- a/openmc/model/surface_composite.py +++ b/openmc/model/surface_composite.py @@ -785,7 +785,6 @@ class Polygon(CompositeSurface): if np.sum(ypts*(np.roll(xpts, 1) - np.roll(xpts, -1))) < 0: points = points[::-1, :] - # Check if polygon is self-intersecting by comparing edges pairwise n = len(points) for i in range(n):