mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 23:05:01 -06:00
Use flip up/down to reverse list
CURA-11293
This commit is contained in:
parent
c9730a2089
commit
2569c4c3d1
1 changed files with 1 additions and 1 deletions
|
@ -495,7 +495,7 @@ class BuildVolume(SceneNode):
|
|||
color = self._disallowed_area_color
|
||||
for polygon in self._disallowed_areas:
|
||||
intersection = polygon.intersectionConvexHulls(bounding_box)
|
||||
points = numpy.fliplr(intersection.getPoints())
|
||||
points = numpy.flipud(intersection.getPoints())
|
||||
if len(points) < 3:
|
||||
continue
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue