OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getHeightmapHeight
(Results
1 - 4
of
4
) sorted by null
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainPatch.java
262
public float
getHeightmapHeight
(float x, float z) {
377
rootPoint.set(0, this.
getHeightmapHeight
(s,i), 0);
378
leftPoint.set(-1, this.
getHeightmapHeight
(s-1,i), 0);
379
rightPoint.set(1, right.
getHeightmapHeight
(1,i), 0);
382
bottomPoint.set(0, this.
getHeightmapHeight
(s,i+1), 1);
389
topPoint.set(0, top.
getHeightmapHeight
(s,s-1), -1);
401
topPoint.set(0, this.
getHeightmapHeight
(s,s-1), -1);
408
bottomPoint.set(0, bottom.
getHeightmapHeight
(s,1), 1);
419
topPoint.set(0, this.
getHeightmapHeight
(s,i-1), -1);
420
bottomPoint.set(0, this.
getHeightmapHeight
(s,i+1), 1);
[
all
...]
TerrainQuad.java
[
all
...]
TerrainGrid.java
463
protected float
getHeightmapHeight
(int x, int z) {
464
return super.
getHeightmapHeight
(x - gridOffset[0], z - gridOffset[1]);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/
Terrain.java
74
public float
getHeightmapHeight
(Vector2f xz);
Completed in 33 milliseconds