13 lines
290 B
OpenSCAD
13 lines
290 B
OpenSCAD
bearingRadius = 22/2;
|
|
bearingBottomThickness = 5;
|
|
desiredBottomThickness = 11;
|
|
thickness = 7;
|
|
tolerance = .1;
|
|
|
|
linear_extrude(thickness) {
|
|
difference() {
|
|
circle(bearingRadius + desiredBottomThickness - bearingBottomThickness);
|
|
circle(bearingRadius + tolerance);
|
|
}
|
|
}
|