gluTessProperty
Sets a tessellation property for the GLU tessellator. This method allows configuring various properties of the tessellator, such as winding rules, boundary-only settings, and tessellation tolerance.
Parameters
The property to be set. This parameter is one of the predefined constants, such as GLU_TESS_WINDING_RULE, GLU_TESS_BOUNDARY_ONLY, or GLU_TESS_TOLERANCE.
The value to assign to the specified property. This can either represent the desired tolerance or a setting corresponding to the given property.
Sets a tessellation property for the GLU tessellator using an integer value. This method internally converts the integer value to a double and delegates to the corresponding method that accepts a double value.
Parameters
The property to be set. This parameter is one of the predefined constants, such as GLU_TESS_WINDING_RULE, GLU_TESS_BOUNDARY_ONLY, or GLU_TESS_TOLERANCE.
The integer value to assign to the specified property. This value will be converted to a double before being passed to the tessellator.