rename, delete echos, extrapolate comments, reticulate splines etc

This commit is contained in:
Bob - Home - Windows 2018-09-05 03:47:49 -04:00
parent 81a7bf6ba6
commit 98c8641480
6 changed files with 5 additions and 13 deletions

View File

@ -37,7 +37,6 @@ module rotated() {
module stabilized(mm=12, vertical = false, type=undef) { module stabilized(mm=12, vertical = false, type=undef) {
if (vertical) { if (vertical) {
$stabilizer_type = type ? type : $stabilizer_type ? $stabilizer_type : "costar_stabilizer"; $stabilizer_type = type ? type : $stabilizer_type ? $stabilizer_type : "costar_stabilizer";
echo($stabilizer_type);
$stabilizers = [ $stabilizers = [
[0, mm], [0, mm],
[0, -mm] [0, -mm]
@ -45,9 +44,7 @@ module stabilized(mm=12, vertical = false, type=undef) {
children(); children();
} else { } else {
echo($stabilizer_type);
$stabilizer_type = type ? type : $stabilizer_type ? $stabilizer_type : "costar_stabilizer"; $stabilizer_type = type ? type : $stabilizer_type ? $stabilizer_type : "costar_stabilizer";
echo($stabilizer_type);
$stabilizers = [ $stabilizers = [
[mm, 0], [mm, 0],

View File

@ -125,7 +125,7 @@ $legends = [];
// Dimensions of alps stem // Dimensions of alps stem
$alps_stem = [4.45, 2.25]; $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] $stabilizer_type = "costar_stabilizer"; // [costar_stabilizer, cherry_stabilizer, disable]
// Ternaries are ONLY for customizer. they will NOT work if you're using this in // Ternaries are ONLY for customizer. they will NOT work if you're using this in

View File

@ -41,7 +41,7 @@ module brim_support(stem_type, stem_support_height, slop) {
} }
} }
rotate(90) inside_cherry_cross(slop); inside_cherry_cross(slop);
} }
} }
} }

View File

@ -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); 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") { } else if (stem_type == "box_cherry") {
difference () { difference () {

View File

@ -3,7 +3,7 @@ include <stems/rounded_cherry.scad>
include <stems/box_cherry.scad> include <stems/box_cherry.scad>
include <stems/alps.scad> include <stems/alps.scad>
include <stems/filled.scad> include <stems/filled.scad>
include <stems/stabilizer.scad> include <stems/cherry_stabilizer.scad>
//whole stem, alps or cherry, trimmed to fit //whole stem, alps or cherry, trimmed to fit

View File

@ -13,11 +13,6 @@ module inside_cherry_stabilizer_cross(slop) {
square(cherry_cross(slop, extra_vertical)[1], center=true); 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) { 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);
} }
} }