From 7ee9e61412860183f63b98551d20fceea1d1a2a5 Mon Sep 17 00:00:00 2001 From: Jonas Grosse-Holz Date: Mon, 27 Sep 2021 20:43:42 +0200 Subject: [PATCH] Fix rounded_cherry stem to properly use $stem_inner_slop --- src/stems/rounded_cherry.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stems/rounded_cherry.scad b/src/stems/rounded_cherry.scad index 77cd7ec..7777bb3 100644 --- a/src/stems/rounded_cherry.scad +++ b/src/stems/rounded_cherry.scad @@ -7,6 +7,6 @@ module rounded_cherry_stem(depth, slop, throw) { // inside cross // translation purely for aesthetic purposes, to get rid of that awful lattice - inside_cherry_cross(slop); + inside_cherry_cross($stem_inner_slop); } }