clone method

BoundingSphere clone()

Returns a new sphere with the same center and radius as this one.

Implementation

BoundingSphere clone() {
  return BoundingSphere().setFrom(this);
}