mirror of
https://github.com/rsheldiii/KeyV2.git
synced 2024-11-26 14:54:21 +00:00
rename, delete echos, extrapolate comments, reticulate splines etc
This commit is contained in:
parent
81a7bf6ba6
commit
98c8641480
@ -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],
|
||||
|
@ -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
|
||||
|
@ -41,7 +41,7 @@ module brim_support(stem_type, stem_support_height, slop) {
|
||||
}
|
||||
}
|
||||
|
||||
rotate(90) inside_cherry_cross(slop);
|
||||
inside_cherry_cross(slop);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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 () {
|
||||
|
@ -3,7 +3,7 @@ include <stems/rounded_cherry.scad>
|
||||
include <stems/box_cherry.scad>
|
||||
include <stems/alps.scad>
|
||||
include <stems/filled.scad>
|
||||
include <stems/stabilizer.scad>
|
||||
include <stems/cherry_stabilizer.scad>
|
||||
|
||||
|
||||
//whole stem, alps or cherry, trimmed to fit
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user