chiark / gitweb /
atreic-piano-stand: v1
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Thu, 3 Sep 2020 14:16:34 +0000 (15:16 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Thu, 3 Sep 2020 14:16:34 +0000 (15:16 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
atreic-piano-stand.scad [new file with mode: 0644]

diff --git a/atreic-piano-stand.scad b/atreic-piano-stand.scad
new file mode 100644 (file)
index 0000000..be81606
--- /dev/null
@@ -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]);
+}