mirror of https://github.com/PrimeDecomp/prime.git
parent
3997f75e24
commit
e2ba417809
|
@ -1,14 +0,0 @@
|
||||||
#ifndef __W_FMOD_H__
|
|
||||||
#define __W_FMOD_H__
|
|
||||||
|
|
||||||
#ifndef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
float fmod(float, float);
|
|
||||||
|
|
||||||
#ifndef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // __W_FMOD_H__
|
|
|
@ -67,6 +67,7 @@ extern _INT32 __extended_huge[];
|
||||||
#define HUGE_VALL (*(long double*)__extended_huge)
|
#define HUGE_VALL (*(long double*)__extended_huge)
|
||||||
|
|
||||||
double fabs(double x);
|
double fabs(double x);
|
||||||
|
double fmod(double x, double m);
|
||||||
double sin(double x);
|
double sin(double x);
|
||||||
double cos(double x);
|
double cos(double x);
|
||||||
double atan(double x);
|
double atan(double x);
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "Kyoto/Math/CVector2i.hpp"
|
#include "Kyoto/Math/CVector2i.hpp"
|
||||||
#include "Kyoto/Math/CloseEnough.hpp"
|
#include "Kyoto/Math/CloseEnough.hpp"
|
||||||
|
|
||||||
#include "Runtime/w_fmod.h"
|
#include "math.h"
|
||||||
#include "rstl/math.hpp"
|
#include "rstl/math.hpp"
|
||||||
|
|
||||||
namespace rstl {
|
namespace rstl {
|
||||||
|
|
Loading…
Reference in New Issue