Files
dusklight/src/JSystem/JMath/JMATrigonometric.cpp
T
kipcode66 dd03bf861f standard compiler compatibility changes (#3040)
* move math to cmath

* replace stdarg to cstdarg

* change stdint to stdint.h

* minor fixes

* change stdio to cstdio

* change stdlib to stdlib

* renamed ctype to cctype

* fix missing argument for UNSET_FLAG
2026-01-13 00:48:25 +02:00

26 lines
487 B
C++

#include "JSystem/JSystem.h" // IWYU pragma: keep
#include "JSystem/JMath/JMATrigonometric.h"
#include <cmath>
#include "global.h"
static f32 dummy() {
return 0.0f;
}
namespace JMath {
template<typename T>
struct TAngleConstant_;
inline f64 getConst2() {
return 9.765625E-4;
}
TSinCosTable<13, f32> sincosTable_ ATTRIBUTE_ALIGN(32);
TAtanTable<1024, f32> atanTable_ ATTRIBUTE_ALIGN(32);
TAsinAcosTable<1024, f32> asinAcosTable_ ATTRIBUTE_ALIGN(32);
} // namespace JMath