packages feed

implicit-0.4.0.0: Examples/example19.escad

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