chiark / gitweb /
simplephone-case: wip
[reprap-play.git] / simplephone-case.scad
1 // -*- C -*-
2
3 psz = [
4        120,
5        56 + 5,
6        15 + 3,
7        ];
8
9 thick = [
10          2,
11          3,
12          2.5,
13          ];
14
15 module Case(){
16   difference(){
17     mirror([1,0,0])
18       translate(-thick)
19       cube(psz + 2*thick - [1,0,0] * (thick[0]));
20
21     #mirror([1,0,0])
22       cube(psz + [1,0,0]);
23   }
24 }
25
26 Case();