set method

Sphere set(
  1. Vector3 center,
  2. double radius
)

Implementation

Sphere set(Vector3 center, double radius) {
  this.center.copy(center);
  this.radius = radius;

  return this;
}