Files
Diddy-Kong-Racing/include/math_util.h
T
2022-05-04 14:47:26 +01:00

12 lines
203 B
C

#ifndef MATH_UTIL_H
#define MATH_UTIL_H
#include "types.h"
#include "structs.h"
extern s16 arctan2_f(f32 y, f32 x);
extern f32 sine_s(s16 angle);
extern f32 cosine_s(s16 angle);
#endif // MATH_UTIL_H