mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-10 21:00:55 -04:00
dd03bf861f
* 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
26 lines
487 B
C++
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
|