mirror of
https://github.com/Haskell-Things/ImplicitCAD.git
synced 2024-11-04 01:26:48 +03:00
6 lines
109 B
Plaintext
6 lines
109 B
Plaintext
// Example 19 -- The union of a cube and a sphere.
|
|
union()
|
|
{
|
|
cube(20);
|
|
translate(20,20,20) sphere (15);
|
|
} |