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

  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
HeightMap.java 63 * <code>getScaledHeightAtPoint</code> returns the scaled value at the
72 float getScaledHeightAtPoint(int x, int z);
AbstractHeightMap.java 157 * <code>getScaledHeightAtPoint</code> returns the scaled value at the
166 public float getScaledHeightAtPoint(int x, int z) {
185 low = getScaledHeightAtPoint((int) x, (int) z);
191 highX = getScaledHeightAtPoint((int) x + 1, (int) z);
200 highZ = getScaledHeightAtPoint((int) x, (int) z + 1);

Completed in 55 milliseconds