ImplicitCAD/Examples/example19.escad
2019-06-28 09:33:21 +01:00

6 lines
109 B
Plaintext

// Example 19 -- The union of a cube and a sphere.
union()
{
cube(20);
translate(20,20,20) sphere (15);
}