VEC_DotProduct


C Specification

#include <nitro/fx/fx_vec.h>

fx32 VEC_DotProduct(const VecFx32 * a, const VecFx32 * b);

Description

This function requests the dot product of VecFx32 type vectors. The dot product is in fx32 format.

Arguments

a   Pointer to a vector
b   Pointer to a vector

Return Values

Dot product of vector a and vector b.

See Also

VecFx32, VEC_CrossProduct

Revision History

01/19/2004 Initial Version