From 8b73f7cef9896f68474a40ae53535f764bd52eb9 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 17 May 2019 09:47:47 +0200 Subject: [PATCH] No longer create convex hulls for modifier meshes CURA-6030 --- cura/PlatformPhysics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index 8fffac4501..d9876b3b36 100755 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -76,7 +76,7 @@ class PlatformPhysics: move_vector = move_vector.set(y = -bbox.bottom + z_offset) # If there is no convex hull for the node, start calculating it and continue. - if not node.getDecorator(ConvexHullDecorator): + if not node.getDecorator(ConvexHullDecorator) and not node.callDecoration("isNonPrintingMesh"): node.addDecorator(ConvexHullDecorator()) # only push away objects if this node is a printing mesh