Sphere.copy constructor

Sphere.copy(Sphere other)

Create a sphere as a copy of other.

Implementation

Sphere.copy(Sphere other)
    : _center = new Vector3.copy(other._center),
      _radius = other._radius;