chiark / gitweb /
scaffold-clamp: wip straphook
[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 }