diff --git a/src/key_transformations.scad b/src/key_transformations.scad index a96ab3f..b164c4b 100644 --- a/src/key_transformations.scad +++ b/src/key_transformations.scad @@ -37,7 +37,6 @@ module rotated() { module stabilized(mm=12, vertical = false, type=undef) { if (vertical) { $stabilizer_type = type ? type : $stabilizer_type ? $stabilizer_type : "costar_stabilizer"; - echo($stabilizer_type); $stabilizers = [ [0, mm], [0, -mm] @@ -45,9 +44,7 @@ module stabilized(mm=12, vertical = false, type=undef) { children(); } else { - echo($stabilizer_type); $stabilizer_type = type ? type : $stabilizer_type ? $stabilizer_type : "costar_stabilizer"; - echo($stabilizer_type); $stabilizers = [ [mm, 0], diff --git a/src/settings.scad b/src/settings.scad index 39017e7..4a43766 100644 --- a/src/settings.scad +++ b/src/settings.scad @@ -125,7 +125,7 @@ $legends = []; // Dimensions of alps stem $alps_stem = [4.45, 2.25]; -// Enable stabilizers. Stabilizers use their own special +// Enable stabilizer stems, to hold onto your cherry or costar stabilizers $stabilizer_type = "costar_stabilizer"; // [costar_stabilizer, cherry_stabilizer, disable] // Ternaries are ONLY for customizer. they will NOT work if you're using this in diff --git a/src/stem_supports/brim.scad b/src/stem_supports/brim.scad index 859cea7..97ae5dc 100644 --- a/src/stem_supports/brim.scad +++ b/src/stem_supports/brim.scad @@ -41,7 +41,7 @@ module brim_support(stem_type, stem_support_height, slop) { } } - rotate(90) inside_cherry_cross(slop); + inside_cherry_cross(slop); } } } diff --git a/src/stem_supports/tines.scad b/src/stem_supports/tines.scad index 67f3310..e372945 100644 --- a/src/stem_supports/tines.scad +++ b/src/stem_supports/tines.scad @@ -25,7 +25,7 @@ module tines_support(stem_type, stem_support_height, slop) { translate([-1.15,0,$stem_support_height / 2]) cube([1, total_key_height($wall_thickness), $stem_support_height], center = true); } - rotate(90) inside_cherry_cross(slop); + inside_cherry_stabilizer_cross(slop); } } else if (stem_type == "box_cherry") { difference () { diff --git a/src/stems.scad b/src/stems.scad index 6849484..c53ab91 100644 --- a/src/stems.scad +++ b/src/stems.scad @@ -3,7 +3,7 @@ include include include include -include +include //whole stem, alps or cherry, trimmed to fit diff --git a/src/stems/stabilizer.scad b/src/stems/cherry_stabilizer.scad similarity index 83% rename from src/stems/stabilizer.scad rename to src/stems/cherry_stabilizer.scad index 1f68040..07ce1ae 100644 --- a/src/stems/stabilizer.scad +++ b/src/stems/cherry_stabilizer.scad @@ -13,11 +13,6 @@ module inside_cherry_stabilizer_cross(slop) { square(cherry_cross(slop, extra_vertical)[1], center=true); } } - - // Guides to assist insertion and mitigate first layer squishing - if ($cherry_bevel){ - - } } module cherry_stabilizer_stem(depth, slop) { @@ -29,6 +24,6 @@ module cherry_stabilizer_stem(depth, slop) { } } - rotate(90) inside_cherry_stabilizer_cross(slop); + inside_cherry_stabilizer_cross(slop); } }