From 31a542b8106cd099c5de8e06ac86d648db0f46bc Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Wed, 27 Feb 2019 17:46:32 -0800 Subject: [PATCH] Added reversed ORIENT constants. --- constants.scad | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/constants.scad b/constants.scad index 3bf8a1c..707aeac 100644 --- a/constants.scad +++ b/constants.scad @@ -42,9 +42,12 @@ V_ZERO = [ 0, 0, 0]; // Orientations for cyl(), etc. Euller angles for rotating a vertical shape into the given orientations. -ORIENT_X = [ 0,90, 0]; -ORIENT_Y = [-90, 0, 0]; -ORIENT_Z = [ 0, 0, 0]; +ORIENT_X = [ 0, 90, 0]; +ORIENT_Y = [-90, 0, 0]; +ORIENT_Z = [ 0, 0, 0]; +ORIENT_XNEG = [ 0,-90, 0]; +ORIENT_YNEG = [ 90, 0, 0]; +ORIENT_ZNEG = [ 0,180, 0]; // Constants for defining edges for chamfer(), etc.