diff --git a/v1/scad/lib/prusa_enclosure/mount.scad b/v1/scad/lib/prusa_enclosure/mount.scad index b2f5def..7190cce 100644 --- a/v1/scad/lib/prusa_enclosure/mount.scad +++ b/v1/scad/lib/prusa_enclosure/mount.scad @@ -31,8 +31,8 @@ module prusa_enclosure_mount(angle, h=10) { // Underside washer alignment cutouts for (y = [-4, 4]) { - translate([124, y, 0]) - cube([2, 2, 2], center=true); + translate([124, y, 1]) + cube([2.1, 2.1, 2.01], center=true); } } } diff --git a/v1/scad/lib/prusa_enclosure/washer.scad b/v1/scad/lib/prusa_enclosure/washer.scad index 5512ed3..481a873 100644 --- a/v1/scad/lib/prusa_enclosure/washer.scad +++ b/v1/scad/lib/prusa_enclosure/washer.scad @@ -8,11 +8,11 @@ module prusa_enclosure_mount_washer() { cylinder(h=3.5, d=3.2, $fn=50); } - translate([7.5, 3, 2]) - cube([2, 2, 1], center=true); + translate([7.5, 3, 2.5]) + cube([2, 2, 2], center=true); - translate([7.5, 11, 2]) - cube([2, 2, 1], center=true); + translate([7.5, 11, 2.5]) + cube([2, 2, 2], center=true); } prusa_enclosure_mount_washer(); \ No newline at end of file