diff --git a/src/components.scad b/src/components.scad index 6ed5b25..cebf73d 100644 --- a/src/components.scad +++ b/src/components.scad @@ -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(); +} diff --git a/src/top-panel-inset-shiokenstar-left.scad b/src/top-panel-inset-shiokenstar-left.scad new file mode 100644 index 0000000..958179b --- /dev/null +++ b/src/top-panel-inset-shiokenstar-left.scad @@ -0,0 +1,16 @@ +/* + * SPDX-FileCopyrightText: © 2023 Brian S. Stephan + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +include +include + +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(); diff --git a/src/top-panel-inset-shiokenstar-right.scad b/src/top-panel-inset-shiokenstar-right.scad new file mode 100644 index 0000000..71c2479 --- /dev/null +++ b/src/top-panel-inset-shiokenstar-right.scad @@ -0,0 +1,16 @@ +/* + * SPDX-FileCopyrightText: © 2023 Brian S. Stephan + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +include +include + +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();