From dc3812ea14f2fda0918ec75af0ec278178502fbc Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Sun, 25 Dec 2016 23:53:38 -0800 Subject: [PATCH] Front face gets positive coordinate frame --- test.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test.scad b/test.scad index cc4440b..2e9a0a4 100644 --- a/test.scad +++ b/test.scad @@ -7,9 +7,9 @@ module testAxes(translation=[0, 0, 0], rotation=[0, 0, 0]) { } testAxes(translation=[0, 0, 200], rotation=[0, 0, 0]); -testAxes(translation=[0, 200, 0], rotation=[270, 90, 0]); -testAxes(translation=[0, 0, -200], rotation=[0, 180, 180]); -testAxes(translation=[0, -200, 0], rotation=[90, 90, 0]); +testAxes(translation=[0, 200, 0], rotation=[270, 270, 0]); +testAxes(translation=[0, 0, -200], rotation=[180, 0, 0]); +testAxes(translation=[0, -200, 0], rotation=[90, 270, 0]); testAxes(translation=[200, 0, 0], rotation=[90, 0, 90]); testAxes(translation=[-200, 0, 0], rotation=[270, 0, 90]);