make the noir and sega 2p panels modules

mostly so I can use them in other .scad files to compare layouts and
that kind of thing
This commit is contained in:
Brian S. Stephan 2023-08-17 18:49:09 -05:00
parent c14c97e832
commit 362d156067
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
2 changed files with 14 additions and 6 deletions

View File

@ -18,7 +18,11 @@
include <components.scad>
difference() {
translate([top_plate_x/2, top_plate_y/2, 0]) topplate();
noir_plus_one();
module namco_noir_plus_one_panel() {
difference() {
translate([top_plate_x/2, top_plate_y/2, 0]) topplate();
noir_plus_one();
}
}
namco_noir_plus_one_panel();

View File

@ -18,7 +18,11 @@
include <components.scad>
difference() {
translate([top_plate_x/2, top_plate_y/2, 0]) topplate();
sega_2p_plus_one();
module sega_2p_plus_one_panel() {
difference() {
translate([top_plate_x/2, top_plate_y/2, 0]) topplate();
sega_2p_plus_one();
}
}
sega_2p_plus_one_panel();