Home | History | Annotate | Download | only in terrain

Lines Matching refs:heightmap

59 import com.jme3.terrain.heightmap.AbstractHeightMap;
60 import com.jme3.terrain.heightmap.ImageBasedHeightMap;
277 // First, we load up our textures and the heightmap texture for the terrain
306 // HEIGHTMAP image (for the terrain heightmap)
308 AbstractHeightMap heightmap = null;
310 heightmap = new ImageBasedHeightMap(heightMapImage.getImage(), 0.5f);
311 heightmap.load();
312 heightmap.smooth(0.9f, 1);
319 terrain = new TerrainQuad("terrain", 65, 513, heightmap.getHeightMap());