copyFrom method
Copy the sphere from other into this.
Implementation
void copyFrom(Sphere other) {
  _center.setFrom(other._center);
  radius = other.radius;
}Copy the sphere from other into this.
void copyFrom(Sphere other) {
  _center.setFrom(other._center);
  radius = other.radius;
}