Reorganize: kebab-case names, per-item subdirectories, regroup items

This commit is contained in:
Ian Gulliver
2026-07-12 22:27:28 -04:00
parent 2981038261
commit 9d5f7bac87
58 changed files with 3 additions and 0 deletions
+18
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.3, $fn=50);
}
translate([7.5, 3, 2.5])
cube([2, 2, 2], center=true);
translate([7.5, 11, 2.5])
cube([2, 2, 2], center=true);
}
prusa_enclosure_mount_washer();