Cross Product
Returns the outer product perpendicular vector of Input 1 and Input 2 vectors, using the following formula:
out.x =
Input1.y*
Input2.z -
Input1.z*
Input2.y
out.y =
Input1.z*
Input2.x -
Input1.x*
Input2.z
out.z =
Input1.x*
Input2.y -
Input1.y*
Input2.x