BoundingSphere.copy constructor
BoundingSphere.copy(
- BoundingSphere sphere
Implementation
BoundingSphere.copy(BoundingSphere sphere){
center = Vector3.copy(sphere.center);
radius = sphere.radius;
}