clone method

Spherical clone()

Returns a new spherical with the same radius, phi and theta properties as this one.

Implementation

Spherical clone() {
  return Spherical().copy(this);
}