equals method
Returns true if the given bounding sphere is deep equal with this bounding sphere.
Implementation
bool equals(BoundingSphere sphere ) {
return ( sphere.center.equals( center ) ) && ( sphere.radius == radius );
}
Returns true if the given bounding sphere is deep equal with this bounding sphere.
bool equals(BoundingSphere sphere ) {
return ( sphere.center.equals( center ) ) && ( sphere.radius == radius );
}