mirror of
https://github.com/rsheldiii/KeyV2.git
synced 2025-03-01 04:18:04 +00:00
17 lines
520 B
OpenSCAD
17 lines
520 B
OpenSCAD
![]() |
include <stem_supports/brim.scad>
|
||
|
include <stem_supports/tines.scad>
|
||
|
|
||
|
|
||
|
//whole stem, alps or cherry, trimmed to fit
|
||
|
module stem_support(support_type, stem_type, stem_support_height, slop){
|
||
|
if (support_type == "brim") {
|
||
|
brim_support(stem_type, stem_support_height, slop);
|
||
|
} else if (support_type == "tines") {
|
||
|
tines_support(stem_type, stem_support_height, slop);
|
||
|
} else if (support_type == "disable") {
|
||
|
children();
|
||
|
} else {
|
||
|
echo("Warning: unsupported $stem_support_type");
|
||
|
}
|
||
|
}
|