From d0acef0cf85d9d2eb20373d784eb3b73055096d6 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Sun, 20 Jun 2021 15:49:23 +0800 Subject: [PATCH] rename --- src/surface/sf_thicken.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/surface/sf_thicken.scad b/src/surface/sf_thicken.scad index 9053edf8..60c64887 100644 --- a/src/surface/sf_thicken.scad +++ b/src/surface/sf_thicken.scad @@ -41,14 +41,14 @@ module sf_thicken(points, thickness, direction = undef, slicing = "SLASH") { } else { dir_v = direction / norm(direction); - sf = points + thickness * [ + surface_bottom = points + thickness * [ for(y = [0:len(points) - 1]) [ for(x = [0:len(points[0]) - 1]) dir_v ] ]; - sf_solidify(points, sf, slicing); + sf_solidify(points, surface_bottom, slicing); } }