Files
af/include/libc64/math64.h
T
Derek Hensley 0b49159da1 math64 OK (#67)
* math64 OK

* Header
2023-08-21 11:36:27 -07:00

20 lines
337 B
C

#ifndef MATHF_H
#define MATHF_H
#include "ultra64.h"
f32 Math_FTanF(f32 x);
f32 Math_FFloorF(f32 x);
f32 Math_FCeilF(f32 x);
f32 Math_FRoundF(f32 x);
f32 Math_FTruncF(f32 x);
f32 Math_FNearbyIntF(f32 x);
f32 fatan(f32 x);
f32 fatan2(f32 y, f32 x);
f32 Math_FAsinF(f32 x);
f32 Math_FAcosF(f32 x);
extern s32 gFatanUseContFrac;
#endif