10 lines
177 B
OpenSCAD
10 lines
177 B
OpenSCAD
outer_dia = 16;
|
|
hole_dia = 5.5;
|
|
height=9;
|
|
|
|
linear_extrude(height=height){
|
|
difference() {
|
|
circle(r=outer_dia/2, $fn=50);
|
|
circle(r=hole_dia/2, $fn=20);
|
|
}
|
|
} |