mirror of
https://github.com/rsheldiii/KeyV2.git
synced 2025-03-21 22:06:37 +00:00
break out stem_inner_slop
This commit is contained in:
parent
60de6b8394
commit
2c89a884da
2 changed files with 6 additions and 3 deletions
src
|
@ -7,7 +7,10 @@ $key_length = 1.0; // Range not working in thingiverse customizer atm [1:0.25:16
|
||||||
$stem_type = "cherry"; // [cherry, alps, rounded_cherry, box_cherry, filled, disable]
|
$stem_type = "cherry"; // [cherry, alps, rounded_cherry, box_cherry, filled, disable]
|
||||||
|
|
||||||
// The stem is the hardest part to print, so this variable controls how much 'slop' there is in the stem
|
// The stem is the hardest part to print, so this variable controls how much 'slop' there is in the stem
|
||||||
$stem_slop = 0.3; // Not working in thingiverse customizer atm [0:0.01:1]
|
// if your keycaps stick in the switch raise this value
|
||||||
|
$stem_slop = 0.35; // Not working in thingiverse customizer atm [0:0.01:1]
|
||||||
|
// broke this out. if your keycaps are falling off lower this value. only works for cherry stems rn
|
||||||
|
$stem_inner_slop = 0.2;
|
||||||
|
|
||||||
// Font size used for text
|
// Font size used for text
|
||||||
$font_size = 6;
|
$font_size = 6;
|
||||||
|
@ -16,7 +19,7 @@ $font_size = 6;
|
||||||
$inverted_dish = false;
|
$inverted_dish = false;
|
||||||
|
|
||||||
// set this to true if you are making double sculpted keycaps
|
// set this to true if you are making double sculpted keycaps
|
||||||
$double_sculpted = false;
|
$double_sculpted = true;
|
||||||
// change aggressiveness of double sculpting
|
// change aggressiveness of double sculpting
|
||||||
// this is the radius of the cylinder the keytops are placed on
|
// this is the radius of the cylinder the keytops are placed on
|
||||||
$double_sculpt_radius = 200;
|
$double_sculpt_radius = 200;
|
||||||
|
|
|
@ -32,6 +32,6 @@ module cherry_stem(depth, slop) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
inside_cherry_cross(slop);
|
inside_cherry_cross($stem_inner_slop);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue