no stem support

This commit is contained in:
Bob 2020-01-11 23:02:43 -05:00
parent 925c6c4819
commit c06b548201
1 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,11 @@ module translate_u(x=0, y=0, z=0){
translate([x * unit, y*unit, z*unit]) children(); translate([x * unit, y*unit, z*unit]) children();
} }
module no_stem_support() {
$stem_support_type = "disable";
children();
}
module brimmed_stem_support(height = 0.4) { module brimmed_stem_support(height = 0.4) {
$stem_support_type = "brim"; $stem_support_type = "brim";
$stem_support_height = height; $stem_support_height = height;