VEC_CrossProduct


C Specification

#include <nitro/fx/fx_vec.h>

void VEC_CrossProduct(
    const VecFx32 * a,
    const VecFx32 * b,
    VecFx32 * axb
);

Description

This function requests the cross product of VecFx32 type vectors. The result is stored in *axb.

a, b, and axb can be pointers to the same vector.

Arguments

a   The pointer to a vector.
b   The pointer to a vector.
axb   The pointer to location where the cross product of a and b is stored.

Return Values

None.

See Also

VecFx32, VEC_DotProduct

Revision History

10/19/2004 Corrected an argument.
01/19/2004 Initial version.