Returns the cross of two vectors in the first parameter.
- Parameters
-
| [out] | vdest | Sum vector = v1 + v2. |
| [in] | v1 | vector. |
| [in] | v2 | vector. |
95 vdest->
x = v1.
y*v2.
z -v1.
z*v2.
y;
96 vdest->
y = v1.
z*v2.
x -v1.
x*v2.
z;
97 vdest->
z = v1.
x*v2.
y -v1.
y*v2.
x;
DOUBLE z
Definition: structs.h:35
DOUBLE x
Definition: structs.h:31
DOUBLE y
Definition: structs.h:33