1
0
mirror of https://github.com/blawar/ooot.git synced 2024-06-25 22:09:34 +00:00
ooot/include/def/math_float.h
2022-02-16 17:54:09 -05:00

13 lines
269 B
C

#pragma once
f32 Math_FAcosF(f32 x);
f32 Math_FAsinF(f32 x);
f32 Math_FAtan2F(f32 y, f32 x);
f32 Math_FAtanF(f32 x);
f32 Math_FCeilF(f32 x);
f32 Math_FFloorF(f32 x);
f32 Math_FNearbyIntF(f32 x);
f32 Math_FRoundF(f32 x);
f32 Math_FTanF(f32 x);
f32 Math_FTruncF(f32 x);