From dc85493d5a4770bbe906ed3e4a8a33d4a2a887a4 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Fri, 30 Jun 2017 09:25:36 +0800 Subject: [PATCH] renamed variable --- src/path_extrude.scad | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/path_extrude.scad b/src/path_extrude.scad index 941e0d93..ac06e957 100644 --- a/src/path_extrude.scad +++ b/src/path_extrude.scad @@ -75,23 +75,23 @@ module path_extrude(shape_pts, path_pts, triangles = "SOLID", twist = 0, scale = ); function calculated_sections() = - let(sessions = path_extrude_inner(1)) + let(sections = path_extrude_inner(1)) closed && pth_pts[0] == pth_pts[len_path_pts_minus_one] ? concat(sections, [sections[0]]) : // round-robin - concat([first_section()], sessions); + concat([first_section()], sections); - sessions = calculated_sections(); + sections = calculated_sections(); polysections( - sessions, + sections, triangles = triangles ); // hook for testing - test_path_extude(sessions); + test_path_extude(sections); } // override to test -module test_path_extude(sessions) { +module test_path_extude(sections) { } \ No newline at end of file