From fb8466418344c0ecdd79aa459edfee8a111e89ee Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sun, 15 May 2022 20:31:00 +0800 Subject: [PATCH] use each --- src/path_scaling_sections.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path_scaling_sections.scad b/src/path_scaling_sections.scad index 13364610..44ccf484 100644 --- a/src/path_scaling_sections.scad +++ b/src/path_scaling_sections.scad @@ -15,6 +15,6 @@ function path_scaling_sections(shape_pts, edge_path) = let(edge_p = edge_path[i], s = norm([edge_p.x, edge_p.y] / base_leng)) [ for(p = shape_pts * s) - [p.x, p.y, edge_p.z] + [each p, edge_p.z] ] ]; \ No newline at end of file