24 lines
553 B
OpenSCAD
24 lines
553 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>
|
|
|
|
// combine the lever mount and generic plate, with mounting holes
|
|
module top_panel_left_lever() {
|
|
difference() {
|
|
// base plate
|
|
union() {
|
|
panel_with_raised_overhang();
|
|
translate([0, 0, -((panel_z/2)+(lever_mount_z/2))]) levermountbase();
|
|
}
|
|
// holes to mount the lever
|
|
translate([0, 20, 0]) levermountholes();
|
|
side_chopper();
|
|
}
|
|
}
|
|
|
|
top_panel_left_lever();
|