Package gov.nasa.worldwind.globe
Class BasicTessellator
- java.lang.Object
-
- gov.nasa.worldwind.globe.BasicTessellator
-
- All Implemented Interfaces:
Tessellator,TileFactory
public class BasicTessellator extends java.lang.Object implements Tessellator, TileFactory
-
-
Constructor Summary
Constructors Constructor Description BasicTessellator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TilecreateTile(Sector sector, Level level, int row, int column)Returns a tile for a specified sector, level within aLevelSet, and row and column within that level.doublegetDetailControl()LevelSetgetLevelSet()voidsetDetailControl(double detailControl)voidsetLevelSet(LevelSet levelSet)voidtessellate(RenderContext rc)
-
-
-
Method Detail
-
getLevelSet
public LevelSet getLevelSet()
-
setLevelSet
public void setLevelSet(LevelSet levelSet)
-
getDetailControl
public double getDetailControl()
-
setDetailControl
public void setDetailControl(double detailControl)
-
tessellate
public void tessellate(RenderContext rc)
- Specified by:
tessellatein interfaceTessellator
-
createTile
public Tile createTile(Sector sector, Level level, int row, int column)
Description copied from interface:TileFactoryReturns a tile for a specified sector, level within aLevelSet, and row and column within that level.- Specified by:
createTilein interfaceTileFactory- Parameters:
sector- the sector spanned by the tilelevel- the level at which the tile lies within a LevelSetrow- the row within the specified levelcolumn- the column within the specified level- Returns:
- a tile constructed with the specified arguments
-
-