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>
This commit is contained in:
Brian S. Stephan 2024-06-17 11:51:34 -05:00
parent b9ba201c99
commit a9911820c9
Signed by: bss
GPG Key ID: 3DE06D3180895FCB

View 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();