From 40d300f5ccf9915ec7df62f17e2df835ba38a179 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 13 Mar 2018 16:46:02 +0100 Subject: [PATCH] Change default direction of snapshot, so robot looks in the same direction as our beautifull logo; the ultibot --- cura/Snapshot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 2a2a49d6cf..afc8818116 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -66,7 +66,7 @@ class Snapshot: size = max(bbox.width, bbox.height, bbox.depth * 0.5) # Looking from this direction (x, y, z) in OGL coordinates - looking_from_offset = Vector(1, 1, 2) + looking_from_offset = Vector(1, 1, -2) if size > 0: # determine the watch distance depending on the size looking_from_offset = looking_from_offset * size * 1.3