Compare commits
2 Commits
3bd36cfbdf
...
a9911820c9
Author | SHA1 | Date | |
---|---|---|---|
a9911820c9 | |||
b9ba201c99 |
@ -457,3 +457,8 @@ module sega_2p_plus_one() {
|
|||||||
// just my guesstimate on this one
|
// just my guesstimate on this one
|
||||||
translate([0, -19-9-11-19-9-11, 0]) sega_2p_p1();
|
translate([0, -19-9-11-19-9-11, 0]) sega_2p_p1();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
module shiokenstar() {
|
||||||
|
translate([-172, 32, 0]) dir_arc_24mm_directionals();
|
||||||
|
sega_2p();
|
||||||
|
}
|
||||||
|
19
src/extras/stand-base.scad
Normal file
19
src/extras/stand-base.scad
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: © 2024 Brian S. Stephan <bss@incorporeal.org>
|
||||||
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
*/
|
||||||
|
|
||||||
|
include <../parameters.scad>
|
||||||
|
include <../components.scad>
|
||||||
|
use <stand.scad>
|
||||||
|
|
||||||
|
module stand_base() {
|
||||||
|
difference() {
|
||||||
|
cube([frame_x, stand_y*2, 3], center=true);
|
||||||
|
translate([0, 0, 1.5]) rotate([180, 0, 0]) stand();
|
||||||
|
translate([-frame_x*0.4, 0, 1.5]) rotate([180, 0, 0]) stand();
|
||||||
|
translate([frame_x*0.4, 0, 1.5]) rotate([180, 0, 0]) stand();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stand_base();
|
16
src/top-panel-inset-shiokenstar-left.scad
Normal file
16
src/top-panel-inset-shiokenstar-left.scad
Normal 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();
|
16
src/top-panel-inset-shiokenstar-right.scad
Normal file
16
src/top-panel-inset-shiokenstar-right.scad
Normal 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();
|
Loading…
Reference in New Issue
Block a user