copy method

Sphere copy(
  1. Sphere sphere
)

Implementation

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

  return this;
}