Ring Exercise

module ring(r1, r2, h) {
difference() {
cylinder(r = r1, h = h, $fn=150);
//subtracts the second
translate([ 0, 0, -1 ]) cylinder(r = r2, h = h+2,
$fn=150);
}
}
ring(8, 7.34, 4);