add basic Sega 2P panels and decorative plates

because why not have them?

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
2025-03-04 15:52:26 -06:00
parent 0129cf6ce6
commit 3153564ad4
2 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/* A top panel in the very popular Sega 2P layout.
*
* SPDX-FileCopyrightText: © 2025 Brian S. Stephan <bss@incorporeal.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
include <parameters.scad>
include <components.scad>
module sega_2p_panel() {
difference() {
panel();
sega_2p();
}
}
sega_2p_panel();