summaryrefslogtreecommitdiff
path: root/src/JSystem/JMath/JMATrigonometric.cpp
blob: 5d394ac9c24ad13f5b02da23272781242598f3c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#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