MCAD-Library/bearings.scad
theOtherRob b97b93c262 more
2010-06-11 15:22:57 -04:00

10 lines
268 B
OpenSCAD

//Todo: placeholder; should generate standard + cusom bearing mounting holes
module bearing_hole(outer_radius, hole=true, mochup=true)
{
union()
{
if (mochup==true) %translate([0,0,-1.5])cylinder(r=outer_radius,h=3);
if (hole==true) circle(r=outer_radius);
}
}