buildable-stick-system/src/extras/stand-base.scad
Brian S. Stephan a9911820c9
make a base for the little stand things
for stability, could be decorated more in the future, that kind of
thing, but this works right now so I'll commit it before I go breaking
things

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2024-06-17 11:51:34 -05:00

20 lines
490 B
OpenSCAD

/*
* 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();