Issue 107 reintroduced

I've just noticed, that issue 107 has been reintroduced.

Summary for 107 is: Fix for off-by-one error on AbstractHeightMap's getInterpolatedHeight

Another thing, TerrainPage.getHeightFromWorld:


public float getHeightFromWorld(Vector3f position) {

I noticed that this code still hasn't changed.



Shouldn't it be something like:



public float getHeightFromWorld(Vector3f position) {
 Vector3f locationPos = new Vector3f();
 worldToLocal(position,locationPos);
  return getHeight(locationPos.x,locationPos.z);
}