mirror of
https://github.com/Haskell-Things/ImplicitCAD.git
synced 2024-11-04 01:26:48 +03:00
6 lines
143 B
Plaintext
6 lines
143 B
Plaintext
//example2.escad -- A rounded union of a square and a circle.
|
|
union(r=14) {
|
|
square([80,80]);
|
|
translate ([80,80]) circle(30);
|
|
}
|