set method

Box3 set(
  1. Vector3 min,
  2. Vector3 max
)

Implementation

Box3 set(Vector3 min, Vector3 max) {
  this.min.copy(min);
  this.max.copy(max);

  return this;
}