mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
21 lines
244 B
C
21 lines
244 B
C
#ifndef MATH_H
|
|
#define MATH_H
|
|
|
|
#include "types.h"
|
|
#include "MSL_C/w_math.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define PI 3.14159265358979323846
|
|
#define F_PI ((f32)PI)
|
|
|
|
#define SQRTF(f) (__frsqrte(f))
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|