mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-24 21:27:50 -05:00
12 lines
323 B
C
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_
|