chiark / gitweb /
atreic-piano-stand: v1
[reprap-play.git] / atreic-piano-stand.scad
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]);
+}