#include <nitro/fx/fx_vec.h>
void VEC_Normalize(const VecFx32 * pSrc, VecFx32 * pDst);
This function normalizes VecFx32 type vectors. The result is stored in *pDst.
It uses the Divider and Square Root Calculator.
pSrc and pDst can be pointers to the same vector.
pSrc |
The pointer to a vector. |
pDst |
The pointer to the normalized vector. |
None.
01/19/2004 Initial version