Package org.lwjgl.util.glu.tessellation
Class GLUtessellatorImpl
- java.lang.Object
-
- org.lwjgl.util.glu.tessellation.GLUtessellatorImpl
-
- All Implemented Interfaces:
GLUtessellator
public class GLUtessellatorImpl extends Object implements GLUtessellator
-
-
Field Summary
Fields Modifier and Type Field Description static int
TESS_MAX_CACHE
-
Constructor Summary
Constructors Constructor Description GLUtessellatorImpl()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
gluBeginPolygon()
void
gluDeleteTess()
void
gluEndPolygon()
void
gluGetTessProperty(int which, double[] value, int value_offset)
static GLUtessellator
gluNewTess()
void
gluNextContour(int type)
void
gluTessBeginContour()
void
gluTessBeginPolygon(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, 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()
- Specified by:
gluDeleteTess
in interfaceGLUtessellator
-
gluTessProperty
public void gluTessProperty(int which, double value)
- Specified by:
gluTessProperty
in interfaceGLUtessellator
-
gluGetTessProperty
public void gluGetTessProperty(int which, double[] value, int value_offset)
- Specified by:
gluGetTessProperty
in interfaceGLUtessellator
-
gluTessNormal
public void gluTessNormal(double x, double y, double z)
- Specified by:
gluTessNormal
in interfaceGLUtessellator
-
gluTessCallback
public void gluTessCallback(int which, GLUtessellatorCallback aCallback)
- Specified by:
gluTessCallback
in interfaceGLUtessellator
-
gluTessVertex
public void gluTessVertex(double[] coords, int coords_offset, Object vertexData)
- Specified by:
gluTessVertex
in interfaceGLUtessellator
-
gluTessBeginPolygon
public void gluTessBeginPolygon(Object data)
- Specified by:
gluTessBeginPolygon
in interfaceGLUtessellator
-
gluTessBeginContour
public void gluTessBeginContour()
- Specified by:
gluTessBeginContour
in interfaceGLUtessellator
-
gluTessEndContour
public void gluTessEndContour()
- Specified by:
gluTessEndContour
in interfaceGLUtessellator
-
gluTessEndPolygon
public void gluTessEndPolygon()
- Specified by:
gluTessEndPolygon
in interfaceGLUtessellator
-
gluBeginPolygon
public void gluBeginPolygon()
- Specified by:
gluBeginPolygon
in interfaceGLUtessellator
-
gluNextContour
public void gluNextContour(int type)
- Specified by:
gluNextContour
in interfaceGLUtessellator
-
gluEndPolygon
public void gluEndPolygon()
- Specified by:
gluEndPolygon
in interfaceGLUtessellator
-
-