acorn: make cap dome height parametric
[clinton/3d-models.git] / etc / stopper-stopper.scad
CommitLineData
cae0d928
CE
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
6stem_base_d = 6;
7stem_neck_d = 11;
8stem_head_d = 14;
9stem_handle_d = 20;
10
11base_h = 8;
12neck_h = 15;
13top_h = 3;
14
15$fa = 0.1;
16$fs = 0.1;
17
18hull () {
19 cylinder (d=stem_base_d);
20 translate ([0, 0, base_h]) cylinder (d=stem_neck_d);
21}
22hull () {
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}
26translate ([0, 0, base_h+neck_h]) cylinder (d=stem_handle_d, h=top_h);