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 Tile
createTile(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.double
getDetailControl()
LevelSet
getLevelSet()
void
setDetailControl(double detailControl)
void
setLevelSet(LevelSet levelSet)
void
tessellate(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:
tessellate
in interfaceTessellator
-
createTile
public Tile createTile(Sector sector, Level level, int row, int column)
Description copied from interface:TileFactory
Returns a tile for a specified sector, level within aLevelSet
, and row and column within that level.- Specified by:
createTile
in 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
-
-