set method

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

Sets the given values to this AABB.

Implementation

AABB set(Vector3 min, Vector3 max ) {
	this.min = min;
	this.max = max;

	return this;
}