pokeheartgold/lib/include/nitro/fx/fx_vec.h
2024-01-19 11:20:49 -05:00

12 lines
323 B
C

#ifndef NITRO_FX_FX_VEC_H_
#define NITRO_FX_FX_VEC_H_
#include <nitro/fx/fx.h>
void VEC_Add(const VecFx32 *a, const VecFx32 *b, VecFx32 *ab);
void VEC_Subtract(const VecFx32 *a, const VecFx32 *b, VecFx32 *ab);
fx32 VEC_Mag(VecFx32 *a);
void VEC_Normalize(const VecFx32 *pSrc, VecFx32 *pDst);
#endif //NITRO_FX_FX_VEC_H_