makeEmpty method

Sphere makeEmpty()

Implementation

Sphere makeEmpty() {
  center.set(0, 0, 0);
  radius = -1;

  return this;
}