Files
2ship2harkinian-Android/include/math.h
T

30 lines
531 B
C
Raw Normal View History

2021-04-07 16:16:16 -05:00
#ifndef _MATH_H_
#define _MATH_H_
2021-08-04 04:21:31 +01:00
#include "PR/ultratypes.h"
2021-04-07 16:16:16 -05:00
#define M_PI 3.14159265358979323846f
#define M_SQRT2 1.41421356237309504880f
2021-07-29 12:45:13 +10:00
#define M_SQRT1_2 0.70710678118654752440f /* 1/sqrt(2) */
2021-04-07 16:16:16 -05:00
#define FLT_MAX 340282346638528859811704183484516925440.0f
#define SHT_MAX 32767.0f
#define SHT_MINV (1.0f / SHT_MAX)
#define DEGTORAD(x) ((x) * (M_PI / 180.0f))
2021-04-07 16:16:16 -05:00
typedef union {
f64 d;
2021-04-07 16:16:16 -05:00
struct {
u32 hi;
u32 lo;
} word;
} du;
typedef union {
u32 i;
f32 f;
} fu;
extern f32 __libm_qnan_f;
#endif