Returns true if the given point is inside this bounding sphere.
bool containsPoint(Vector3 point ) { return ( point.squaredDistanceTo( center ) <= ( radius * radius ) ); }