VEC_Fx16Normalize

C Specification

#include <nitro/fx/fx_vec.h>

void VEC_Fx16Normalize(const VecFx16 * pSrc, VecFx16 * pDst);

Arguments

pSrc The pointer to a vector.
pDst   The pointer to the normalized vector.

Return Values

None.

Description

This function normalizes a VecFx16 type vector. The result is stored in *pDst. It uses the Divider and Square Root Calculator. pSrc and pDst can be pointers to the same vector.

See Also

Revision History

02/16/2004 Initial version