- fix in GeoMap constructor
git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8743 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
ca69ef57b7
commit
8d3aa7bad9
@ -58,7 +58,8 @@ public class GeoMap implements Savable {
|
||||
|
||||
@Deprecated
|
||||
public GeoMap(FloatBuffer heightData, int width, int height, int maxval){
|
||||
this(new float[heightData.limit()], width, height, maxval);
|
||||
hdata = new float[heightData.limit()];
|
||||
heightData.get(hdata);
|
||||
this.width = width;
|
||||
this.height = height;
|
||||
this.maxval = maxval;
|
||||
|
@ -72,7 +72,7 @@ public class LODGeomap extends GeoMap {
|
||||
|
||||
@Deprecated
|
||||
public LODGeomap(int size, FloatBuffer heightMap) {
|
||||
this(size, new float[heightMap.limit()]);
|
||||
super(heightMap, size, size, 1);
|
||||
}
|
||||
|
||||
public LODGeomap(int size, float[] heightMap) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user