From a9911820c92dd878063ff08bfbb5b802c3b166a8 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Mon, 17 Jun 2024 11:51:34 -0500 Subject: [PATCH] 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 --- src/extras/stand-base.scad | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/extras/stand-base.scad diff --git a/src/extras/stand-base.scad b/src/extras/stand-base.scad new file mode 100644 index 0000000..15fe58e --- /dev/null +++ b/src/extras/stand-base.scad @@ -0,0 +1,19 @@ +/* + * SPDX-FileCopyrightText: © 2024 Brian S. Stephan + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +include <../parameters.scad> +include <../components.scad> +use + +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();