getSize method

Vector3 getSize(
  1. Vector3 result
)

Computes the size (width, height, depth) of this AABB and stores it into the given vector.

Implementation

Vector3 getSize(Vector3 result ) {
	return result.subVectors( max, min );
}