From b8e8f2ac0e6ed00306b0e5f5cc6678085022e890 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 9 Nov 2023 16:19:35 +0100 Subject: [PATCH] Code readability improvement CURA-11293 --- cura/BuildVolume.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index feb8bdc5bf..b52ba095fc 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -495,8 +495,7 @@ class BuildVolume(SceneNode): color = self._disallowed_area_color for polygon in self._disallowed_areas: intersection = polygon.intersectionConvexHulls(bounding_box) - - points = intersection.getPoints()[::-1] + points = numpy.fliplr(intersection.getPoints()) if len(points) < 3: continue