acorn: make cap dome height parametric
[clinton/3d-models.git] / etc / toh.scad
CommitLineData
ad6083f6
CE
1// Simple Toh press for incense trails
2// 31mm long, 12mm wide
3
4leg_length = 31;
5leg_width = 12;
6leg_depth = 5;
7leg_spacing = 10;
8handle_depth = 10;
9
10cube([leg_width, leg_length, leg_depth]);
11
12translate ([leg_spacing + leg_width,0,0]) cube([leg_width, leg_length, leg_depth]);
13
14translate ([0, leg_length - leg_width, 0]) cube ([leg_spacing + leg_width * 2, leg_width, leg_depth + handle_depth]);