1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 12:54:51 +00:00
oot/include/math.h

15 lines
280 B
C
Raw Normal View History

2020-03-17 04:31:30 +00:00
#ifndef _MATH_H_
#define _MATH_H_
#define M_PI 3.14159265358979323846f
2020-03-21 02:09:42 +00:00
#define M_SQRT2 1.41421356237309504880f
2020-03-17 04:31:30 +00:00
#define FLT_MAX 340282346638528859811704183484516925440.0f
float sinf(float);
double sin(double);
float cosf(float);
double cos(double);
float sqrtf(float f);
#endif