copy method

Copies all values from the given bounding sphere to this bounding sphere.

Implementation

BoundingSphere copy(BoundingSphere sphere ) {
	center.copy( sphere.center );
	radius = sphere.radius;

	return this;
}