make the mount spacers a separate piece

this was necessary for the back bottom pieces, so might as well simplify the
print of the front bottom pieces as well

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
Brian S. Stephan 2024-09-18 10:29:51 -05:00
parent f0d3f434a3
commit d87794db59
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
2 changed files with 20 additions and 5 deletions

View File

@ -0,0 +1,17 @@
/* Just a simple washer to go between the frame post and the arcade enclosure.
*
* SPDX-FileCopyrightText: © 2024 Brian S. Stephan <bss@incorporeal.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
include <parameters.scad>
include <components.scad>
module mount_spacer() {
difference() {
cylinder(r=25, h=1.25, $fn=50, center=true);
m6_hole();
}
}
mount_spacer();

View File

@ -1,4 +1,5 @@
/*
/* A panel with a mount point for the front left of the enclosure.
*
* SPDX-FileCopyrightText: © 2024 Brian S. Stephan <bss@incorporeal.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
@ -15,10 +16,7 @@ mount_hole_y = (panel_y / 2) - 50.80;
module front_left_mount_panel() {
difference() {
union() {
panel();
translate([-mount_hole_x, -mount_hole_y, panel_z/2]) cylinder(r=15, h=4, $fn=50, center=true);
}
panel();
translate([-mount_hole_x, -mount_hole_y, 0]) m6_hole();
}
}