mead-horn: note dependency on dotscad
[clinton/3d-models.git] / etc / toh.scad
1 // Simple Toh press for incense trails
2 // 31mm long, 12mm wide
3
4 leg_length = 31;
5 leg_width = 12;
6 leg_depth = 5;
7 leg_spacing = 10;
8 handle_depth = 10;
9
10 cube([leg_width, leg_length, leg_depth]);
11
12 translate ([leg_spacing + leg_width,0,0]) cube([leg_width, leg_length, leg_depth]);
13
14 translate ([0, leg_length - leg_width, 0]) cube ([leg_spacing + leg_width * 2, leg_width, leg_depth + handle_depth]);