Most of the frame up to the Y sleds is done

This commit is contained in:
2022-02-22 22:08:01 +01:00
commit 860d81bf85
4 changed files with 246 additions and 0 deletions

23
stock_parts.scad Normal file
View File

@@ -0,0 +1,23 @@
stock_color = "lightgray";
bushing_od = 12;
bushing_id = 8;
bushing_len = 8;
module bushing() {
colorize(stock_color) {
difference() {
cylinder(d = bushing_od, h = bushing_len);
translate([0,0,-1])
cylinder(d = bushing_id, h = bushing_len + 2);
}
}
}
module colorize(colorname) {
if (use_colors) {
color(colorname) union() { children(); }
} else {
children();
}
}