Increase washer alignment size and clearance

This commit is contained in:
Ian Gulliver
2024-07-20 14:58:39 -07:00
parent 5ed001a0ea
commit cb1fe73dc8
2 changed files with 6 additions and 6 deletions

View File

@@ -31,8 +31,8 @@ module prusa_enclosure_mount(angle, h=10) {
// Underside washer alignment cutouts // Underside washer alignment cutouts
for (y = [-4, 4]) { for (y = [-4, 4]) {
translate([124, y, 0]) translate([124, y, 1])
cube([2, 2, 2], center=true); cube([2.1, 2.1, 2.01], center=true);
} }
} }
} }

View File

@@ -8,11 +8,11 @@ module prusa_enclosure_mount_washer() {
cylinder(h=3.5, d=3.2, $fn=50); cylinder(h=3.5, d=3.2, $fn=50);
} }
translate([7.5, 3, 2]) translate([7.5, 3, 2.5])
cube([2, 2, 1], center=true); cube([2, 2, 2], center=true);
translate([7.5, 11, 2]) translate([7.5, 11, 2.5])
cube([2, 2, 1], center=true); cube([2, 2, 2], center=true);
} }
prusa_enclosure_mount_washer(); prusa_enclosure_mount_washer();