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); } }