Add "printed stabilizers" and regenerate customizer
This commit is contained in:
parent
2bb1d1f300
commit
b31b2962f7
3 changed files with 1919 additions and 192 deletions
2106
customizer.scad
2106
customizer.scad
File diff suppressed because it is too large
Load diff
|
|
@ -169,7 +169,7 @@ $inset_legend_depth = 0.2;
|
|||
$alps_stem = [4.45, 2.25];
|
||||
|
||||
// Enable stabilizer stems, to hold onto your cherry or costar stabilizers
|
||||
$stabilizer_type = "costar_stabilizer"; // [costar_stabilizer, cherry_stabilizer, disable]
|
||||
$stabilizer_type = "printed_stabilizer"; // [costar_stabilizer, cherry_stabilizer, printed_stabilizer, disable]
|
||||
|
||||
// Ternaries are ONLY for customizer. they will NOT work if you're using this in
|
||||
// OpenSCAD. you should use stabilized(), openSCAD customizer,
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ include <stems/box_cherry.scad>
|
|||
include <stems/alps.scad>
|
||||
include <stems/filled.scad>
|
||||
include <stems/cherry_stabilizer.scad>
|
||||
include <stems/printed_stabilizer.scad>
|
||||
include <stems/custom.scad>
|
||||
|
||||
|
||||
|
|
@ -21,6 +22,8 @@ module stem(stem_type, depth, slop, throw){
|
|||
filled_stem();
|
||||
} else if (stem_type == "cherry_stabilizer") {
|
||||
cherry_stabilizer_stem(depth, slop, throw);
|
||||
} else if (stem_type == "printed_stabilizer") {
|
||||
printed_stabilizer(depth, slop, throw);
|
||||
} else if (stem_type == "disable") {
|
||||
children();
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue