ImplicitCAD/Examples/example3.escad

11 lines
375 B
Plaintext
Raw Permalink Normal View History

// example3.escad -- the extruded product of the union of five circles.
linear_extrude (height = 40, center=true){
union ( r = 8) {
circle (10);
translate ([22,0]) circle (10);
translate ([0,22]) circle (10);
translate ([-22,0]) circle (10);
translate ([0,-22]) circle (10);
}
}