buildable-stick-system/src/top-panel-overhang-left-lever.scad
Brian S. Stephan c0c9b9e1dc
adjust how the lever mount is aligned to do the chopper right
Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2024-02-19 11:14:14 -06:00

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();