From 2be72ca22b23a157a071323443e9e686adccc572 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 10 Nov 2023 18:00:00 +0100 Subject: [PATCH] Revert "Use intersection instead of convex hull intersection" This reverts commit 4982680dfce39bb189c0a3a4b1c7bb41480123a0. --- cura/BuildVolume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 7b10ba3ffc..b52ba095fc 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -494,7 +494,7 @@ class BuildVolume(SceneNode): mb = MeshBuilder() color = self._disallowed_area_color for polygon in self._disallowed_areas: - intersection = polygon.intersection(bounding_box) + intersection = polygon.intersectionConvexHulls(bounding_box) points = numpy.fliplr(intersection.getPoints()) if len(points) < 3: continue