Package gov.nasa.worldwind.draw
Interface DrawableTerrain
-
- All Superinterfaces:
Drawable
- All Known Implementing Classes:
BasicDrawableTerrain
public interface DrawableTerrain extends Drawable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleandrawLines(DrawContext dc)booleandrawTriangles(DrawContext dc)SectorgetSector()Vec3getVertexOrigin()booleanuseVertexPointAttrib(DrawContext dc, int attribLocation)booleanuseVertexTexCoordAttrib(DrawContext dc, int attribLocation)
-
-
-
Method Detail
-
getSector
Sector getSector()
-
getVertexOrigin
Vec3 getVertexOrigin()
-
useVertexPointAttrib
boolean useVertexPointAttrib(DrawContext dc, int attribLocation)
-
useVertexTexCoordAttrib
boolean useVertexTexCoordAttrib(DrawContext dc, int attribLocation)
-
drawLines
boolean drawLines(DrawContext dc)
-
drawTriangles
boolean drawTriangles(DrawContext dc)
-
-