Box3 constructor

Box3([
  1. Vector3? min,
  2. Vector3? max
])

Implementation

Box3([Vector3? min, Vector3? max]) {
  this.min = min ?? Vector3(Infinity, Infinity, Infinity);
  this.max = max ?? Vector3(-Infinity, -Infinity, -Infinity);
}