From bc0e8e2c195bd193d5e0610f90270ac14aaa3327 Mon Sep 17 00:00:00 2001 From: Minh Vu Date: Sun, 18 Dec 2022 15:28:44 -0500 Subject: [PATCH] add slop to alps --- src/stems/alps.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stems/alps.scad b/src/stems/alps.scad index b17a163..c93e5c3 100644 --- a/src/stems/alps.scad +++ b/src/stems/alps.scad @@ -1,5 +1,5 @@ module alps_stem(depth, slop, throw){ linear_extrude(height=depth) { - square($alps_stem, center = true); + square($alps_stem - [slop, slop], center = true); } }