HomeSort by relevance Sort by last modified time
    Searched refs:SINCOS_LUT_LENGTH (Results 1 - 2 of 2) sorted by null

  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/
MathUtils.java 72 public static final float[] sinLUT = new float[Settings.SINCOS_LUT_LENGTH];
75 for (int i = 0; i < Settings.SINCOS_LUT_LENGTH; i++) {
106 if (index == Settings.SINCOS_LUT_LENGTH - 1) {
113 return sinLUT[MathUtils.round(x / Settings.SINCOS_LUT_PRECISION) % Settings.SINCOS_LUT_LENGTH];
Settings.java 72 public static final int SINCOS_LUT_LENGTH = (int) Math.ceil(Math.PI * 2 / SINCOS_LUT_PRECISION);

Completed in 1006 milliseconds