Computes the cross product of the two input vectors.

Let's say that Vector C is the cross product of these two vectors:
Vector A: (Ax, Ay, Az)
Vector B: (Bx, By, Bz)

If we split the components, the formula to find the cross product is:
Cx: (Ay×Bz)-(Az×By)
Cy: (Az×Bx)-(Ax×Bz)
Cz: (Ax×By)-(Ay×Bx)

The cross product is used to find a vector that is perpendicular to to both vectors.