From c06b54820182f58b8934b1ae3320b5a7be15471e Mon Sep 17 00:00:00 2001 From: Bob Date: Sat, 11 Jan 2020 23:02:43 -0500 Subject: [PATCH] no stem support --- src/key_transformations.scad | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/key_transformations.scad b/src/key_transformations.scad index 10ab530..e2da732 100644 --- a/src/key_transformations.scad +++ b/src/key_transformations.scad @@ -7,6 +7,11 @@ module translate_u(x=0, y=0, z=0){ translate([x * unit, y*unit, z*unit]) children(); } +module no_stem_support() { + $stem_support_type = "disable"; + children(); +} + module brimmed_stem_support(height = 0.4) { $stem_support_type = "brim"; $stem_support_height = height;