We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18f1e08 commit 9a1fb2fCopy full SHA for 9a1fb2f
openglider/glider/cell/panel.py
@@ -278,9 +278,7 @@ def __add__(self, other: Panel) -> Panel | None:
278
return None
279
280
def is_lower(self) -> bool:
281
- if (self.cut_front.x_left + self.cut_back.x_left) >= 1e-3:
282
- return True
283
- if (self.cut_front.x_right + self.cut_back.x_right) >= 1e-3:
+ if (self.cut_front.x_left + self.cut_back.x_left + self.cut_front.x_right + self.cut_back.x_right) >= 1e-3:
284
return True
285
286
return False
0 commit comments