AABB constructor

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

Constructs a new AABB with the given values.

Implementation

AABB([Vector3? min, Vector3? max ]) {
	this.min = min ?? Vector3();
	this.max = max ?? Vector3();
}