MCAD-Library/bearings.scad
2010-07-25 19:59:17 +03:00

12 lines
289 B
OpenSCAD

// License: GPL 2.0
//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);
}
}