mirror of
https://github.com/zeldaret/af.git
synced 2026-09-26 13:33:16 -04:00
d2ca0a87d8
* sys_math_atan OK * accidentally didn't merge the code yaml lol * hopefully fixed things * add macros * refactor
11 lines
175 B
C
11 lines
175 B
C
#ifndef SYS_MATH_ATAN_H
|
|
#define SYS_MATH_ATAN_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
u16 U_GetAtanTable(f32 y, f32 x);
|
|
s16 atans_table(f32 x, f32 y);
|
|
f32 atanf_table(f32 x, f32 y);
|
|
|
|
#endif
|