Home | History | Annotate | Download | only in terrain

Lines Matching refs:hdata

50     protected float[] hdata;
57 hdata = new float[heightData.limit()];
58 heightData.get(hdata);
65 this.hdata = heightData;
75 return BufferUtils.createFloatBuffer(hdata);
81 return hdata;
104 return hdata[y*width+x];
119 return hdata[i];
246 assert hdata.length == height*width;
258 store.put( (float)hdata[i++]*scale.y );
343 oc.write(hdata, "hdataarray", null);
351 hdata = ic.readFloatArray("hdataarray", null);
352 if (hdata == null) {
353 FloatBuffer buf = ic.readFloatBuffer("hdata", null);
355 hdata = new float[buf.limit()];
356 buf.get(hdata);