aboutsummaryrefslogtreecommitdiff
path: root/parts/end_cap_flush.scad
blob: fd0d9d576f8d1c4039e04d7ccd5bfd7acc10339f (plain)
1
2
3
4
5
6
7
8
9
10
11
inner_radius = 10.75;
radius = 12;

height = 3;
inner_height = 5;

union() {
    cylinder(r1=radius - height / 2, r2=radius, h=height);
    translate([0, 0, height-0.01]) cylinder(r=inner_radius, h=inner_height);
}