ImplicitCAD/Examples/example19.escad

6 lines
109 B
Plaintext
Raw Permalink Normal View History

2019-06-28 11:33:21 +03:00
// Example 19 -- The union of a cube and a sphere.
union()
{
cube(20);
translate(20,20,20) sphere (15);
}