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 intTESS_MAX_CACHE
-
Constructor Summary
Constructors Constructor Description GLUtessellatorImpl()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidgluBeginPolygon()voidgluDeleteTess()voidgluEndPolygon()voidgluGetTessProperty(int which, double[] value, int value_offset)static GLUtessellatorgluNewTess()voidgluNextContour(int type)voidgluTessBeginContour()voidgluTessBeginPolygon(Object data)voidgluTessCallback(int which, GLUtessellatorCallback aCallback)voidgluTessEndContour()voidgluTessEndPolygon()voidgluTessNormal(double x, double y, double z)voidgluTessProperty(int which, double value)voidgluTessVertex(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:
gluDeleteTessin interfaceGLUtessellator
-
gluTessProperty
public void gluTessProperty(int which, double value)- Specified by:
gluTessPropertyin interfaceGLUtessellator
-
gluGetTessProperty
public void gluGetTessProperty(int which, double[] value, int value_offset)- Specified by:
gluGetTessPropertyin interfaceGLUtessellator
-
gluTessNormal
public void gluTessNormal(double x, double y, double z)- Specified by:
gluTessNormalin interfaceGLUtessellator
-
gluTessCallback
public void gluTessCallback(int which, GLUtessellatorCallback aCallback)- Specified by:
gluTessCallbackin interfaceGLUtessellator
-
gluTessVertex
public void gluTessVertex(double[] coords, int coords_offset, Object vertexData)- Specified by:
gluTessVertexin interfaceGLUtessellator
-
gluTessBeginPolygon
public void gluTessBeginPolygon(Object data)
- Specified by:
gluTessBeginPolygonin interfaceGLUtessellator
-
gluTessBeginContour
public void gluTessBeginContour()
- Specified by:
gluTessBeginContourin interfaceGLUtessellator
-
gluTessEndContour
public void gluTessEndContour()
- Specified by:
gluTessEndContourin interfaceGLUtessellator
-
gluTessEndPolygon
public void gluTessEndPolygon()
- Specified by:
gluTessEndPolygonin interfaceGLUtessellator
-
gluBeginPolygon
public void gluBeginPolygon()
- Specified by:
gluBeginPolygonin interfaceGLUtessellator
-
gluNextContour
public void gluNextContour(int type)
- Specified by:
gluNextContourin interfaceGLUtessellator
-
gluEndPolygon
public void gluEndPolygon()
- Specified by:
gluEndPolygonin interfaceGLUtessellator
-
-