Computes the OBB from an AABB.
OBB fromAABB(AABB aabb ) { aabb.getCenter( center ); aabb.getSize( halfSizes ).multiplyScalar( 0.5 ); rotation.identity(); return this; }