summaryrefslogtreecommitdiff
path: root/include/sys_math.h
blob: 0da5df89029611dd0b09300dfd90237d8b4727a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SYS_MATH_H
#define SYS_MATH_H

#include "ultra64.h"

f32 Math_FactorialF(f32 n);
f32 Math_Factorial(s32 n);
f32 Math_PowF(f32 base, s32 exp);
f32 Math_SinF(f32 angle);
f32 Math_CosF(f32 angle);
s16 Math_Atan2S(f32 x, f32 y);
f32 Math_Atan2F(f32 x, f32 y);

#endif