getSize method

Vector3 getSize(
  1. Vector3 result
)

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

Implementation

Vector3 getSize(Vector3 result ) {
	return result.copy( halfSizes ).multiplyScalar( 2 );
}