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:
parent
b9ba201c99
commit
a9911820c9
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();
|
Loading…
Reference in New Issue
Block a user