expand method

AABB expand(
  1. Vector3 point
)

Expands this AABB by the given point. So after this method call, the given point lies inside the AABB.

Implementation

AABB expand(Vector3 point ) {
	min.min( point );
	max.max( point );

	return this;
}