lookAt method
Creates a quaternion that orients an object to face towards a specified target direction.
Implementation
Quaternion lookAt(Vector3 localForward, Vector3 targetDirection, Vector3 localUp ) {
matrix.lookAt( localForward, targetDirection, localUp );
fromMatrix3( matrix );
return this;
}