Home | History | Annotate | Download | only in terrain

Lines Matching refs:heightmap

51 import com.jme3.terrain.heightmap.AbstractHeightMap;
52 import com.jme3.terrain.heightmap.ImageBasedHeightMap;
103 // HEIGHTMAP image (for the terrain heightmap)
141 // CREATE HEIGHTMAP
142 AbstractHeightMap heightmap = null;
144 heightmap = new ImageBasedHeightMap(heightMapImage.getImage(), 1f);
145 heightmap.load();
155 TerrainQuad terrainQuad = new TerrainQuad("terrain", 65, 129, heightmap.getHeightMap());//, new LodPerspectiveCalculatorFactory(getCamera(), 4)); // add this in to see it use entropy for LOD calculations
318 System.out.println("Terrain heightmap building FAILED!!!");
326 System.out.println("Terrain heightmap building PASSED");