Class GLUtessellatorImpl
- java.lang.Object
-
- gov.nasa.worldwind.util.glu.tessellator.GLUtessellatorImpl
-
- All Implemented Interfaces:
GLUtessellator
public class GLUtessellatorImpl extends java.lang.Object implements GLUtessellator
-
-
Field Summary
Fields Modifier and Type Field Description static int
TESS_MAX_CACHE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
gluDeleteTess()
void
gluGetTessProperty(int which, double[] value, int value_offset)
static GLUtessellator
gluNewTess()
void
gluTessBeginContour()
void
gluTessBeginPolygon(java.lang.Object data)
void
gluTessCallback(int which, GLUtessellatorCallback aCallback)
void
gluTessEndContour()
void
gluTessEndPolygon()
void
gluTessNormal(double x, double y, double z)
void
gluTessProperty(int which, double value)
void
gluTessVertex(double[] coords, int coords_offset, java.lang.Object vertexData)
-
-
-
Field Detail
-
TESS_MAX_CACHE
public static final int TESS_MAX_CACHE
- See Also:
- Constant Field Values
-
-
Method Detail
-
gluNewTess
public static GLUtessellator gluNewTess()
-
gluDeleteTess
public void gluDeleteTess()
-
gluTessProperty
public void gluTessProperty(int which, double value)
-
gluGetTessProperty
public void gluGetTessProperty(int which, double[] value, int value_offset)
-
gluTessNormal
public void gluTessNormal(double x, double y, double z)
-
gluTessCallback
public void gluTessCallback(int which, GLUtessellatorCallback aCallback)
-
gluTessVertex
public void gluTessVertex(double[] coords, int coords_offset, java.lang.Object vertexData)
-
gluTessBeginPolygon
public void gluTessBeginPolygon(java.lang.Object data)
-
gluTessBeginContour
public void gluTessBeginContour()
-
gluTessEndContour
public void gluTessEndContour()
-
gluTessEndPolygon
public void gluTessEndPolygon()
-
-