mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-03 08:25:31 +00:00
Fix build
This commit is contained in:
parent
1d05f95f74
commit
10d723372d
@ -23,8 +23,8 @@ public final class MathUtil {
|
|||||||
static final int lookupTableSize = 1 << lookupBits;
|
static final int lookupTableSize = 1 << lookupBits;
|
||||||
|
|
||||||
private static final int lookupTableSizeWithMargin = lookupTableSize + 1;
|
private static final int lookupTableSizeWithMargin = lookupTableSize + 1;
|
||||||
private static final double tauOverLookupSize = TrigonometryConstants.TAU / lookupTableSize;
|
private static final double tauOverLookupSize = Math.TAU / lookupTableSize;
|
||||||
static final double radianToIndex = (~(-1 << lookupBits) + 1) / TrigonometryConstants.TAU;
|
static final double radianToIndex = (~(-1 << lookupBits) + 1) / Math.TAU;
|
||||||
private static final long[] sinTable;
|
private static final long[] sinTable;
|
||||||
|
|
||||||
static {
|
static {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user