copyFrom method

void copyFrom (Sphere other)

Copy the sphere from other into this.

Implementation

void copyFrom(Sphere other) {
  _center.setFrom(other._center);
  _radius = other._radius;
}