acorn: medium acorn present
[clinton/3d-models.git] / etc / stopper-stopper.scad
1 // Trival stopper for a drilled out homebrewing stopper
2
3 // Quick hack so I could store water in homebrewing carboys during
4 // hurricane florence
5
6 stem_base_d = 6;
7 stem_neck_d = 11;
8 stem_head_d = 14;
9 stem_handle_d = 20;
10
11 base_h = 8;
12 neck_h = 15;
13 top_h = 3;
14
15 $fa = 0.1;
16 $fs = 0.1;
17
18 hull () {
19 cylinder (d=stem_base_d);
20 translate ([0, 0, base_h]) cylinder (d=stem_neck_d);
21 }
22 hull () {
23 translate ([0, 0, base_h]) cylinder (d=stem_neck_d);
24 translate ([0, 0, base_h+neck_h]) cylinder (d=stem_head_d);
25 }
26 translate ([0, 0, base_h+neck_h]) cylinder (d=stem_handle_d, h=top_h);