src/ was getting pretty unreadable and I finally had time to do something about it Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
17 lines
354 B
OpenSCAD
17 lines
354 B
OpenSCAD
/*
|
|
* SPDX-FileCopyrightText: © 2023 Brian S. Stephan <bss@incorporeal.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
include <parameters.scad>
|
|
include <components.scad>
|
|
|
|
module shiokenstar_right_panel() {
|
|
difference() {
|
|
translate([frame_x/2-frame_wall, 0, 0]) panel();
|
|
translate([75, 0, 0]) shiokenstar();
|
|
}
|
|
}
|
|
|
|
shiokenstar_right_panel();
|