VEC_CrossProduct

Syntax

#include <nitro/fx/fx_vec.h>

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

Arguments

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

Return Values

None.

Description

This function requests the cross product of VecFx32 type vectors. The result is stored in *axb. a, b, and ab can be pointers to the same vector.

See Also

VecFx32, VEC_DotProduct

Revision History

2004/01/19 Initial version.


CONFIDENTIAL