mirror of
https://github.com/zeldaret/af.git
synced 2026-09-26 13:33:16 -04:00
0b49159da1
* math64 OK * Header
20 lines
337 B
C
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
|