From 30f349276646c99ad18fbedd3482b376c574b6b0 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 3 Sep 2020 15:16:34 +0100 Subject: [PATCH] atreic-piano-stand: v1 Signed-off-by: Ian Jackson --- atreic-piano-stand.scad | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 atreic-piano-stand.scad diff --git a/atreic-piano-stand.scad b/atreic-piano-stand.scad new file mode 100644 index 0000000..be81606 --- /dev/null +++ b/atreic-piano-stand.scad @@ -0,0 +1,11 @@ +// -*- C -*- +height = 40; +depth = 20; +thick = 3; +width = 40; + +difference(){ + cube([width, depth, height]); + translate([thick, -1, thick]) + cube([width - thick*2, depth+2, height]); +} -- 2.30.2