chiark / gitweb /
Merge commit '92f9d78ecdcd2ee53ac7519c19c91cdd71122d22'
[reprap-play.git] / atreic-piano-stand.scad
1 // -*- C -*-
2 height = 40;
3 depth = 20;
4 thick = 3;
5 width = 40;
6
7 difference(){
8   cube([width, depth, height]);
9   translate([thick, -1, thick])
10     cube([width - thick*2, depth+2, height]);
11 }