gluTessProperty

abstract fun gluTessProperty(which: Int, value: Double)(source)

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

which

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.

value

The value to assign to the specified property. This can either represent the desired tolerance or a setting corresponding to the given property.


open fun gluTessProperty(which: Int, value: Int)(source)

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

which

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.

value

The integer value to assign to the specified property. This value will be converted to a double before being passed to the tessellator.