From: Ian Jackson Date: Thu, 3 Sep 2020 14:16:34 +0000 (+0100) Subject: atreic-piano-stand: v1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=30f349276646c99ad18fbedd3482b376c574b6b0;p=reprap-play.git atreic-piano-stand: v1 Signed-off-by: Ian Jackson --- 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]); +}