OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HeightMap
(Results
1 - 7
of
7
) sorted by null
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
HeightMapGrid.java
5
package com.jme3.terrain.
heightmap
;
19
public
HeightMap
getHeightMapAt(Vector3f location);
HeightMap.java
33
package com.jme3.terrain.
heightmap
;
39
public interface
HeightMap
{
ImageBasedHeightMapGrid.java
5
package com.jme3.terrain.
heightmap
;
17
* By default it expects a 16-bit grayscale image as the
heightmap
, but
51
public
HeightMap
getHeightMapAt(Vector3f location) {
52
//
HEIGHTMAP
image (for the terrain
heightmap
)
56
AbstractHeightMap
heightmap
= null;
local
61
logger.log(Level.INFO, "Loading
heightmap
from file: {0}", name);
64
// CREATE
HEIGHTMAP
65
heightmap
= new ImageBasedHeightMap(texture.getImage());
67
heightmap
.setHeightScale(1)
[
all
...]
AbstractHeightMap.java
32
package com.jme3.terrain.
heightmap
;
54
public abstract class AbstractHeightMap implements
HeightMap
{
240
* <code>save</code> will save the
heightmap
data into a new RAW file
432
* You must first load() the
heightmap
data before this will have any effect.
448
* You must first load() the
heightmap
data before this will have any effect.
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/grid/
FractalTileLoader.java
14
import com.jme3.terrain.
heightmap
.AbstractHeightMap;
15
import com.jme3.terrain.
heightmap
.
HeightMap
;
52
private
HeightMap
getHeightMapAt(Vector3f location) {
53
AbstractHeightMap
heightmap
= null;
local
61
heightmap
= new FloatBufferHeightMap(buffer);
62
heightmap
.load();
63
return
heightmap
;
67
HeightMap
heightMapAt = getHeightMapAt(location);
ImageTileLoader.java
15
import com.jme3.terrain.
heightmap
.*;
78
private
HeightMap
getHeightMapAt(Vector3f location) {
79
//
HEIGHTMAP
image (for the terrain
heightmap
)
83
AbstractHeightMap
heightmap
= null;
local
89
logger.log(Level.INFO, "Loading
heightmap
from file: {0}", name);
91
heightmap
= new ImageBasedHeightMap(texture.getImage());
97
logger.log(Level.WARNING, "File: {0} not found, loading zero
heightmap
instead", name);
99
// CREATE
HEIGHTMAP
101
heightmap
= new Grayscale16BitHeightMap(im)
[
all
...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainGrid.java
47
import com.jme3.terrain.
heightmap
.
HeightMap
;
48
import com.jme3.terrain.
heightmap
.HeightMapGrid;
144
HeightMap
heightMapAt = heightMapGrid.getHeightMapAt(quadCell);
Completed in 43 milliseconds