Package gov.nasa.worldwind.globe
Class TerrainTile
- java.lang.Object
-
- gov.nasa.worldwind.util.Tile
-
- gov.nasa.worldwind.globe.TerrainTile
-
public class TerrainTile extends Tile
Represents a portion of a globe's terrain. Applications typically do not interact directly with this class.
-
-
Constructor Summary
Constructors Constructor Description TerrainTile(Sector sector, Level level, int row, int column)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getDistanceToCamera()
float[]
getHeightLimits()
float[]
getHeights()
Vec3
getOrigin()
BufferObject
getPointBuffer(RenderContext rc)
float[]
getPoints()
void
setHeightLimits(float[] heightLimits)
void
setHeights(float[] heights)
void
setOrigin(Vec3 origin)
void
setPoints(float[] points)
-
Methods inherited from class gov.nasa.worldwind.util.Tile
assembleTilesForLevel, computeColumn, computeLastColumn, computeLastRow, computeRow, intersectsFrustum, intersectsSector, mustSubdivide, subdivide, subdivideToCache
-
-
-
-
Method Detail
-
getDistanceToCamera
public double getDistanceToCamera()
-
getHeights
public float[] getHeights()
-
setHeights
public void setHeights(float[] heights)
-
getHeightLimits
public float[] getHeightLimits()
-
setHeightLimits
public void setHeightLimits(float[] heightLimits)
-
getPoints
public float[] getPoints()
-
setPoints
public void setPoints(float[] points)
-
getOrigin
public Vec3 getOrigin()
-
setOrigin
public void setOrigin(Vec3 origin)
-
getPointBuffer
public BufferObject getPointBuffer(RenderContext rc)
-
-