mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
13 lines
240 B
C
13 lines
240 B
C
#ifndef _MATH_H_
|
|
#define _MATH_H_
|
|
|
|
#define M_PI 3.14159265358979323846f
|
|
#define FLT_MAX 340282346638528859811704183484516925440.0f
|
|
|
|
float sinf(float);
|
|
double sin(double);
|
|
float cosf(float);
|
|
double cos(double);
|
|
float sqrtf(float f);
|
|
|
|
#endif
|