aboutsummaryrefslogtreecommitdiff
path: root/engine/src/terrain/com/jme3/terrain/heightmap/HeightMapGrid.java
blob: 8d5942943551f5614b460d08a4ebb039a748ae77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.jme3.terrain.heightmap;

import com.jme3.math.Vector3f;

/**
 *
 * @author Anthyon
 */
@Deprecated
/**
 * @Deprecated in favor of TerrainGridTileLoader
 */
public interface HeightMapGrid {

    public HeightMap getHeightMapAt(Vector3f location);

    public void setSize(int size);

}