reorganize all the parts into subdirectories
src/ was getting pretty unreadable and I finally had time to do something about it Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
21
src/panels/overhang/left-lever-panel.scad
Normal file
21
src/panels/overhang/left-lever-panel.scad
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* 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 lever_left_overhang_panel() {
|
||||
difference() {
|
||||
// base plate
|
||||
panel_with_raised_overhang();
|
||||
// holes to mount the lever
|
||||
translate([0, 20, 0]) levermountholes();
|
||||
translate([0, 20, 0]) levermountcountersinks();
|
||||
side_chopper();
|
||||
}
|
||||
}
|
||||
|
||||
lever_left_overhang_panel();
|
||||
Reference in New Issue
Block a user