src/ was getting pretty unreadable and I finally had time to do something about it Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
19 lines
454 B
OpenSCAD
19 lines
454 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 lever_and_dir_arc_w_30mm_panel() {
|
|
difference() {
|
|
panel();
|
|
dir_arc_w_30mm();
|
|
translate([(-panel_x/2)+55, (panel_y/2)-75, 0]) levermountholes();
|
|
translate([(-panel_x/2)+55, (panel_y/2)-75, 0]) levermountcountersinks();
|
|
}
|
|
}
|
|
|
|
lever_and_dir_arc_w_30mm_panel();
|