- commit
- 8ea6092
- parent
- 6a3e165
- author
- Neale Pickett
- date
- 2025-05-12 10:00:33 -0600 MDT
Add decorative rings
1 files changed,
+5,
-2
+5,
-2
1@@ -21,10 +21,11 @@ difference() {
2 }
3 }
4
5+od_top = 20.4;
6 translate([50, 0, 0])
7 union() {
8 difference() {
9- cylinder(h=83, d=20.4);
10+ cylinder(h=83, d=od_top);
11 // Inner bore
12 translate([0, 0, 17]) cylinder(h=200, d=id_top);
13
14@@ -41,7 +42,9 @@ union() {
15 }
16 }
17 intersection() {
18- cylinder(h=83, d=20.4);
19+ cylinder(h=83, d=od_top);
20 translate([-id_top/2, -100, 18]) rotate([0, -45, 0]) cube([200, 200, 1]);
21 }
22+ translate([0, 0, 8.5]) donut(h=3, d=od_top);
23+ translate([0, 0, 83-3/2]) donut(h=3, d=od_top);
24 }