123456789101112131415161718192021222324252627282930 |
-
-
-
-
- $fn = 50;
-
-
- diameter = 17.8;
-
- width = 1;
- bottom_width = 1;
- height = 6;
-
-
-
- difference() {
-
- cylinder(h = height, d = (diameter + (2 * width)));
-
- translate([0, 0, bottom_width])
- cylinder(h = height - bottom_width, d = diameter);
- }
|