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 boolean
drawLines(DrawContext dc)
boolean
drawTriangles(DrawContext dc)
Sector
getSector()
Vec3
getVertexOrigin()
boolean
useVertexPointAttrib(DrawContext dc, int attribLocation)
boolean
useVertexTexCoordAttrib(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)
-
-