Description:
Computes the cross product (or vector product, or exterior product) of two vectors. This operation is not commutative.
Parameters:
- a
- Type: Vector3d
- First vector.
- b
- Type: Vector3d
- Second vector.
Returns:
Type: Vector3d
A new vector that is perpendicular to both a and b,
has Length == a.Length * b.Length * sin(theta) where theta is the angle between a and b.
The resulting vector is oriented according to the right hand rule.
Available since:
5.0