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:
parent
f0d3f434a3
commit
d87794db59
17
src/extras/q2009/mount-spacer.scad
Normal file
17
src/extras/q2009/mount-spacer.scad
Normal 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();
|
@ -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-FileCopyrightText: © 2024 Brian S. Stephan <bss@incorporeal.org>
|
||||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
* 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() {
|
module front_left_mount_panel() {
|
||||||
difference() {
|
difference() {
|
||||||
union() {
|
|
||||||
panel();
|
panel();
|
||||||
translate([-mount_hole_x, -mount_hole_y, panel_z/2]) cylinder(r=15, h=4, $fn=50, center=true);
|
|
||||||
}
|
|
||||||
translate([-mount_hole_x, -mount_hole_y, 0]) m6_hole();
|
translate([-mount_hole_x, -mount_hole_y, 0]) m6_hole();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user