chiark / gitweb /
air-hockey-puck: wip
[reprap-play.git] / secateurs-clip.scad
1 // -*- C -*-
2
3 l = 47;
4 d = 18;
5
6 w = 15;
7 t = 10;
8 te = 7;
9
10 linear_extrude(height=15, convexity=4) {
11   for (m=[0,1]) {
12     mirror([m,0]) {
13       polygon([[ -1,      0 ],
14                [ -1,     -t ],
15                [ l/2+te, -t ],
16                [ l/2+te,  d ],
17                [ l/2,     d ],
18                [ l/2,     0 ],
19                ]);
20     }
21   }
22 }