license is still the same, this just saves duplicating the terms and standardizes with what I've been doing elsewhere, style-wise Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
22 lines
540 B
OpenSCAD
22 lines
540 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 top_panel_solo_lever_and_sega_2p_6_button() {
|
|
difference() {
|
|
// base plate
|
|
union() {
|
|
top_plate_with_raised_overhang();
|
|
translate([-60, 18, -((top_plate_z/2)+(lever_mount_z/2))]) levermountbase();
|
|
}
|
|
translate([95, -20, 0]) sega_2p_6_button();
|
|
translate([-60, 18, 0]) levermountholes();
|
|
}
|
|
}
|
|
|
|
top_panel_solo_lever_and_sega_2p_6_button();
|