Tao.OpenGl SDK Documentation

Glu.gluGetTessProperty Method (GLUtesselator, Int32, IntPtr)

Gets a tessellation object property.

[Visual Basic]
Overloads Public Shared Sub gluGetTessProperty( _
   ByVal tess As GLUtesselator, _
   ByVal which As Integer, _
   ByVal data As IntPtr _
)
[C#]
public static void gluGetTessProperty(
   GLUtesselator tess,
   int which,
   IntPtr data
);

Parameters

tess
The tessellation object (created with gluNewTess).
which
The property whose value is to be retrieved. The following values are valid: GLU_TESS_WINDING_RULE, GLU_TESS_BOUNDARY_ONLY, and GLU_TESS_TOLERANCE.
data
A pointer to the location where the value of the named property is written.

Remarks

gluGetTessProperty retrieves properties stored in a tessellation object. These properties affect the way that tessellation objects are interpreted and rendered. See the gluTessProperty reference page for information about the properties and what they do.

See Also

Glu Class | Tao.OpenGl Namespace | Glu.gluGetTessProperty Overload List | gluNewTess | gluTessProperty