summaryrefslogtreecommitdiff
path: root/src/JSystem/JMath/JMATrigonometric.cpp
blob: 2fc14cb13eb5dd9e241a3a3380a613a1c79b3585 (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 <math>
#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