mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
ee48867446
* math3d wip * math3d wip * wip * wip * wip * wip * final update before pr * run format.sh * fix merge conflicts * tharo suggestions update * fig formatting suggestion * math3d pr updates * use sFactorialTbl in sys_math
16 lines
339 B
C
16 lines
339 B
C
#ifndef _MATH_H_
|
|
#define _MATH_H_
|
|
|
|
#define M_PI 3.14159265358979323846f
|
|
#define M_SQRT2 1.41421356237309504880f
|
|
#define FLT_MAX 340282346638528859811704183484516925440.0f
|
|
#define SHT_MAX 32767.0f
|
|
#define SHT_MINV (1.0f / SHT_MAX)
|
|
|
|
float sinf(float);
|
|
double sin(double);
|
|
float cosf(float);
|
|
double cos(double);
|
|
float sqrtf(float f);
|
|
|
|
#endif
|