gluTessProperty

set a tessellation object property

Signature

gluTessProperty( GLUtesselator* ( tess ) , GLenum ( which ) , GLdouble ( data ) )-> void
gluTessProperty( tess , which , data )
gluTessProperty( POINTER(GLUtesselator)(tess), GLenum(which), GLdouble(data) ) -> None

Parameters

VariablesDescription
tess
Specifies the tessellation object (created with gluNewTess ).
which
Specifies the property to be set. Valid values are GLU_TESS_WINDING_RULE , GLU_TESS_BOUNDARY_ONLY , and GLU_TESS_TOLERANCE .
data
Specifies the value of the indicated property.

Sample Code References

The following code samples have been found which appear to reference the functions described here. Take care that the code may be old, broken or not even use PyOpenGL.

gluTessProperty
{LGPL} PyMT pymt/lib/squirtle.py Lines: 21, 407
{LGPL} PyMT pymt/graphx/bezier.py Lines: 39, 142