ImplicitCAD/Examples/example2.escad

6 lines
143 B
Plaintext
Raw Normal View History

//example2.escad -- A rounded union of a square and a circle.
union(r=14) {
square([80,80]);
translate ([80,80]) circle(30);
}