mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-06-19 01:16:26 -07:00
12 lines
203 B
C
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
|