Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2016-09-07 10:21:19 +0300
committerJaime van Kessel <nallath@gmail.com>2016-09-07 10:21:19 +0300
commite010c90c435aab94dc8e7814b89c66fae23a226c (patch)
treebb8d377981861a9645b2d6bc58ad7d9ee0fa4dbc /cura/PlatformPhysics.py
parent1999e587b6d6c1b6b1c019b96d9a0f3adfd6876a (diff)
No longer set move_vector when we don't have to
Diffstat (limited to 'cura/PlatformPhysics.py')
-rw-r--r--cura/PlatformPhysics.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/cura/PlatformPhysics.py b/cura/PlatformPhysics.py
index d25a74bf91..b1dd1c4c8e 100644
--- a/cura/PlatformPhysics.py
+++ b/cura/PlatformPhysics.py
@@ -107,7 +107,6 @@ class PlatformPhysics:
continue # Other node is already moving, wait for next pass.
overlap = (0, 0) # Start loop with no overlap
- move_vector = move_vector.set(x=overlap[0] * self._move_factor, z=overlap[1] * self._move_factor)
current_overlap_checks = 0
# Continue to check the overlap until we no longer find one.
while overlap and current_overlap_checks < self._max_overlap_checks: