From 5dbde4ad0684e63f394f939784845609b7cb265e Mon Sep 17 00:00:00 2001 From: "bre..ns" Date: Tue, 24 Apr 2012 20:17:25 +0000 Subject: [PATCH] TerrainQuad documentation patch thanks @slyh git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9326 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- .../com/jme3/terrain/geomipmap/TerrainQuad.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/engine/src/terrain/com/jme3/terrain/geomipmap/TerrainQuad.java b/engine/src/terrain/com/jme3/terrain/geomipmap/TerrainQuad.java index d3f56d704..e071a0e76 100644 --- a/engine/src/terrain/com/jme3/terrain/geomipmap/TerrainQuad.java +++ b/engine/src/terrain/com/jme3/terrain/geomipmap/TerrainQuad.java @@ -65,16 +65,16 @@ import java.util.logging.Level; import java.util.logging.Logger; /** + *

* A terrain quad is a node in the quad tree of the terrain system. * The root terrain quad will be the only one that receives the update() call every frame * and it will determine if there has been any LOD change. - * + *

* The leaves of the terrain quad tree are Terrain Patches. These have the real geometry mesh. - * - * + *

* Heightmap coordinates start from the bottom left of the world and work towards the * top right. - * + *

  *  +x
  *  ^
  *  | ......N = length of heightmap
@@ -83,11 +83,10 @@ import java.util.logging.Logger;
  *  | 0.....:
  *  +---------> +z
  * (world coordinates)
- * 
+ * 
* @author Brent Owens */ public class TerrainQuad extends Node implements Terrain { - protected Vector2f offset; protected int totalSize; // the size of this entire terrain tree (on one side)