copy method

AABB copy(
  1. AABB aabb
)

Copies all values from the given AABB to this AABB.

Implementation

AABB copy(AABB aabb ) {
	min.copy( aabb.min );
	max.copy( aabb.max );

	return this;
}