A few OpenSCAD sample files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

6 lines
124 B

// Standard Bolt
module bolt(d, h) {
cylinder(d=1.9 * d, h=d/2, $fn=6);
translate ([0,0,d/2])
cylinder(d=d, h=h);
}