From f3c6fbc593ae68d17b4a4de1c844b031c2f4a4af Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Sun, 31 Mar 2019 03:21:07 -0700 Subject: [PATCH] Commented out top-level variables in math.scad, due to pathological OpenSCAD behavious. --- math.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/math.scad b/math.scad index 28f365a..acb5aab 100644 --- a/math.scad +++ b/math.scad @@ -1090,8 +1090,8 @@ function ident(n) = [for (i = [0:n-1]) [for (j = [0:n-1]) (i==j)?1:0]]; // Create an identity matrix, for 3 axes. -ident3 = ident(3); -ident4 = ident(4); +//ident3 = ident(3); +//ident4 = ident(4); // Function: mat3_to_mat4()