mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-15 14:09:35 +00:00
8d83727429
* split sys_math, sys_math3d, z_lib from global.h * suggestions * forgot this * more math stuff * nit fix * re-add ichain.h * resolve tharo's comments
17 lines
326 B
C
17 lines
326 B
C
#ifndef FP_MATH_H
|
|
#define FP_MATH_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
f32 Math_FTanF(f32 angle);
|
|
f32 Math_FFloorF(f32 x);
|
|
f32 Math_FCeilF(f32 x);
|
|
f32 Math_FRoundF(f32 x);
|
|
f32 Math_FNearbyIntF(f32 x);
|
|
f32 Math_FTruncF(f32 x);
|
|
f32 Math_FAtanF(f32 x);
|
|
f32 Math_FAtan2F(f32 y, f32 x);
|
|
f32 Math_FAsinF(f32 x);
|
|
f32 Math_FAcosF(f32 x);
|
|
|
|
#endif
|