From ccccf62bf768299e81fd8a32701e098972b532d1 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 11 Nov 2016 14:18:08 +0100 Subject: [PATCH] Repair showing build volume We needed to apply the Minkowski hull on the polygon or it would be disjunct and wouldn't show up in the interface. Contributes to issue CURA-2625. --- cura/BuildVolume.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index e0b93c1b82..2af3b21e62 100644 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -470,6 +470,7 @@ class BuildVolume(SceneNode): [prime_tower_x, prime_tower_y], [prime_tower_x - prime_tower_size, prime_tower_y], ]) + prime_tower_area = prime_tower_area.getMinkowskiHull(Polygon.approximatedCircle(0)) result.append(prime_tower_area) return result