diff --git a/src/extras/q2009/mount-spacer.scad b/src/extras/q2009/mount-spacer.scad new file mode 100644 index 0000000..29d989c --- /dev/null +++ b/src/extras/q2009/mount-spacer.scad @@ -0,0 +1,17 @@ +/* Just a simple washer to go between the frame post and the arcade enclosure. + * + * SPDX-FileCopyrightText: © 2024 Brian S. Stephan + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +include +include + +module mount_spacer() { + difference() { + cylinder(r=25, h=1.25, $fn=50, center=true); + m6_hole(); + } +} + +mount_spacer(); diff --git a/src/extras/q2009/panel-front-left-mount.scad b/src/extras/q2009/panel-front-left-mount.scad index 3fcf892..003a3de 100644 --- a/src/extras/q2009/panel-front-left-mount.scad +++ b/src/extras/q2009/panel-front-left-mount.scad @@ -1,4 +1,5 @@ -/* +/* A panel with a mount point for the front left of the enclosure. + * * SPDX-FileCopyrightText: © 2024 Brian S. Stephan * 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(); } }