8 lines
264 B
OpenSCAD
8 lines
264 B
OpenSCAD
|
module hollowCylinder(innerRadius, outerRadius, height, $fn = 360) {
|
||
|
difference() {
|
||
|
cylinder(r=outerRadius, h = height, $fn=$fn);
|
||
|
translate([0, 0, -0.01]) cylinder(r=innerRadius, h = height + 0.02, $fn=$fn);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//hollowCylinder(1, 2, 10);
|