Sphere constructor
      
      Sphere()
     
    
Create a new, uninitialized sphere.
Implementation
Sphere()
    : _center = Vector3.zero(),
      radius = 0.0;Create a new, uninitialized sphere.
Sphere()
    : _center = Vector3.zero(),
      radius = 0.0;