Create v1, scad, objects hierarchy

This commit is contained in:
Ian Gulliver
2024-07-11 09:16:54 -07:00
parent 1537b8bd1b
commit 05bbf5b8fa
20 changed files with 16 additions and 16 deletions

View File

@@ -0,0 +1,18 @@
module prusa_enclosure_mount_washer() {
difference() {
// Base
cube([8.9, 14, 1.5]);
// Through screw hole
translate([3.5, 7, -1])
cylinder(h=3.5, d=3.2, $fn=50);
}
translate([7.5, 3, 2])
cube([2, 2, 1], center=true);
translate([7.5, 11, 2])
cube([2, 2, 1], center=true);
}
prusa_enclosure_mount_washer();