add a shiokenstar layout and top panels

I didn't use this in a build, but the panels work. there might be some
misalignment with the interconnect, still, but I'm thinking of redoing
that piece anyway. I think these files are good at least.

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
Brian S. Stephan 2024-06-17 11:24:32 -05:00
parent 3bd36cfbdf
commit b9ba201c99
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
3 changed files with 37 additions and 0 deletions

View File

@ -457,3 +457,8 @@ module sega_2p_plus_one() {
// just my guesstimate on this one
translate([0, -19-9-11-19-9-11, 0]) sega_2p_p1();
}
module shiokenstar() {
translate([-172, 32, 0]) dir_arc_24mm_directionals();
sega_2p();
}

View File

@ -0,0 +1,16 @@
/*
* 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_inset_shiokenstar_left() {
difference() {
translate([-frame_x/2+frame_wall, 0, 0]) panel();
translate([75, 0, 0]) shiokenstar();
}
}
top_panel_inset_shiokenstar_left();

View File

@ -0,0 +1,16 @@
/*
* 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_inset_shiokenstar_right() {
difference() {
translate([frame_x/2-frame_wall, 0, 0]) panel();
translate([75, 0, 0]) shiokenstar();
}
}
top_panel_inset_shiokenstar_right();