Sphere.copy constructor
Create a sphere as a copy of other.
Implementation
Sphere.copy(Sphere other)
    : _center = new Vector3.copy(other._center),
      _radius = other._radius;
    Create a sphere as a copy of other.
Sphere.copy(Sphere other)
    : _center = new Vector3.copy(other._center),
      _radius = other._radius;