/* * SPDX-FileCopyrightText: © 2023 Brian S. Stephan * SPDX-License-Identifier: GPL-3.0-or-later */ include include // 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();