this has two effects: 1. thinner and thicker spacers could be printed to accommodate preferences without having to reprint panels 2. I'm still testing this a bit, but by not having the spacer and panel be the same (partially hollow) part, I think the lever clickiness is a bit more pleasing to the ear the second point is entirely arbitrary, so the first point is the real benefit, despite me trying this because of the second Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
20 lines
511 B
OpenSCAD
20 lines
511 B
OpenSCAD
/*
|
|
* SPDX-FileCopyrightText: © 2023 Brian S. Stephan <bss@incorporeal.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
include <parameters.scad>
|
|
include <components.scad>
|
|
|
|
module top_panel_left_lever_and_dir_arc_w_30mm() {
|
|
difference() {
|
|
panel_with_raised_overhang();
|
|
dir_arc_w_30mm();
|
|
side_chopper();
|
|
translate([(-panel_x/2)+55, (panel_y/2)-75, 0]) levermountholes();
|
|
translate([(-panel_x/2)+55, (panel_y/2)-75, 0]) levermountcountersinks();
|
|
}
|
|
}
|
|
|
|
top_panel_left_lever_and_dir_arc_w_30mm();
|