From 4aca215d23a814a86929b6f136abf8905e0d9846 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Mon, 27 Jan 2020 15:23:19 +0800 Subject: [PATCH] fix deps --- src/path_scaling_sections.scad | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/path_scaling_sections.scad b/src/path_scaling_sections.scad index a3cdabde..2a23dd55 100644 --- a/src/path_scaling_sections.scad +++ b/src/path_scaling_sections.scad @@ -8,8 +8,8 @@ * **/ -include ; -include ; +use ; +use ; function path_scaling_sections(shape_pts, edge_path) = let( @@ -18,11 +18,11 @@ function path_scaling_sections(shape_pts, edge_path) = scaling_matrice = [ for(p = edge_path) let(s = norm([p[0], p[1], 0]) / base_leng) - __m_scaling([s, s, 1]) + m_scaling([s, s, 1]) ], leng_edge_path = len(edge_path) ) - __reverse([ + reverse([ for(i = 0; i < leng_edge_path; i = i + 1) [ for(p = shape_pts)