mirror of
https://github.com/Haskell-Things/ImplicitCAD.git
synced 2024-11-04 01:26:48 +03:00
5 lines
140 B
Plaintext
5 lines
140 B
Plaintext
/* Example 13 - The rounded union of a cube and a sphere. */
|
|
union () {
|
|
cube ([0,0,0],[20,20,20]);
|
|
translate ([20,20,20]) sphere (15);
|
|
} |