From 35bdf558e7ae6ff668d887547f2626ebed06028b Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Tue, 29 Oct 2019 22:43:45 -0700 Subject: [PATCH] Removed extraneous echos()s --- coords.scad | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/coords.scad b/coords.scad index ef880e69..0762858d 100644 --- a/coords.scad +++ b/coords.scad @@ -242,12 +242,10 @@ function xy_to_polar(x,y=undef) = let( // a=[0,0,0]; b=[10,-10,0]; c=[10,0,10]; // xy = project_plane(pt, a, b, c); // xy2 = project_plane(pt, [a,b,c]); -// echo(xy,xy2); function project_plane(point, a, b, c) = - echo(point=point,a=a,b=b,c=c) is_undef(b) && is_undef(c) && is_list(a)? let( indices = find_noncollinear_points(a) - ) echo(indices=indices) project_plane(point, a[indices[0]], a[indices[1]], a[indices[2]]) : + ) project_plane(point, a[indices[0]], a[indices[1]], a[indices[2]]) : assert(is_vector(a)) assert(is_vector(b)) assert(is_vector(c))