Searched refs:QUARTER_CIRCLE (Results 1 - 1 of 1) sorted by relevance

/external/jmonkeyengine/engine/src/android/jme3tools/android/
H A DFixed.java39 public static final int QUARTER_CIRCLE = 64; field in class:Fixed
44 public static final int FULL_CIRCLE_MASK = QUARTER_CIRCLE * 4 - 1;
52 * Equivalent to: sin((2 * PI) / (QUARTER_CIRCLE * 4))
54 * Note: if either QUARTER_CIRCLE or TABLE_SHIFT is changed this value
60 * Equivalent to: cos((2 * PI) / (QUARTER_CIRCLE * 4)) * 2
62 * Note: if either QUARTER_CIRCLE or TABLE_SHIFT is changed this value
70 private static final int[] SINE_TABLE = new int[QUARTER_CIRCLE + 1];
91 for (int n = 2; n < QUARTER_CIRCLE + 1; n++) {
95 for (int n = 0; n < QUARTER_CIRCLE + 1; n++) {
112 int[] lut = new int[QUARTER_CIRCLE];
[all...]

Completed in 64 milliseconds