From dbafef9373a97a82d976a0a502f81f504706d6e5 Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 5 Sep 2018 14:34:52 -0400 Subject: [PATCH] make centered_tines support stabs --- src/stem_supports/tines.scad | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/stem_supports/tines.scad b/src/stem_supports/tines.scad index e372945..ca98342 100644 --- a/src/stem_supports/tines.scad +++ b/src/stem_supports/tines.scad @@ -2,7 +2,7 @@ include <../functions.scad> include <../stems/cherry.scad> module centered_tines(stem_support_height) { - translate([0,0,$stem_support_height / 2]) cube([total_key_width($wall_thickness), 1, $stem_support_height], center = true); + if ($key_length < 2) translate([0,0,$stem_support_height / 2]) cube([total_key_width($wall_thickness), 1, $stem_support_height], center = true); translate([0,0,$stem_support_height / 2]) cube([1, total_key_height($wall_thickness), $stem_support_height], center = true); } @@ -20,7 +20,6 @@ module tines_support(stem_type, stem_support_height, slop) { } else if (stem_type == "cherry_stabilizer") { difference () { union() { - //if ($key_length < 2) translate([0,0,$stem_support_height / 2]) cube([total_key_width($wall_thickness), 1, $stem_support_height], center = true); translate([1.15,0,$stem_support_height / 2]) cube([1, total_key_height($wall_thickness), $stem_support_height], center = true); translate([-1.15,0,$stem_support_height / 2]) cube([1, total_key_height($wall_thickness), $stem_support_height], center = true); }