From 3bbefd588bd5c37e358d5054a534aea15c851e57 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Tue, 13 Oct 2015 15:40:40 +0200 Subject: [PATCH] Increase the amount of spacing from platform physics This creates a stable situation more quickly CURA-203 #Start-Review --- cura/PlatformPhysics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py index aaaf650819..2e4d77b77f 100644 --- a/cura/PlatformPhysics.py +++ b/cura/PlatformPhysics.py @@ -127,8 +127,8 @@ class PlatformPhysics: if overlap is None: continue - move_vector.setX(overlap[0] * 1.01) - move_vector.setZ(overlap[1] * 1.01) + move_vector.setX(overlap[0] * 1.1) + move_vector.setZ(overlap[1] * 1.1) convex_hull = node.callDecoration("getConvexHull") if convex_hull: if not convex_hull.isValid():