VEC_Fx16CrossProduct


C Specification

#include <nitro/fx/fx_vec.h>

void VEC_Fx16CrossProduct(
    const VecFx16 * a,
    const VecFx16 * b,
    VecFx16 * axb
);

Description

This function requests the cross product of VecFx16 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 the location where the cross product of vector a and vector b is stored.

Return Values

None.

See Also

VecFx16, VEC_Fx16DotProduct

Revision History

10/19/2004 Corrected an argument.
02/16/2004 Initial version.