summaryrefslogtreecommitdiff
path: root/include/libc64/math64.h
blob: 1b8e87fdbf1675b6324253f80ae6c14c3a09e55c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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