RwSetPolygonDiffuse(RwPolygon3d *polygon, RwReal kd);
Description
Sets the diffuse reflection coefficient of the polygons material.
Arguments
polygon Pointer to the polygon.
kd Diffuse reflection coefficient in the range CREAL(0.0) to CREAL(1.0).
Return Value
The argument polygon if successful, and NULL otherwise.
Comments
RenderWare optimizes memory usage by sharing materials across multiple polygons. Setting a polygon material property with this function will cause the polygon to have its own copy of the material, not shared by any other polygons. Unless this is the desired effect, it is more memory efficient to use the corresponding material function RwSetMaterialDiffuse() to change the underlying polygon material. This change will then be propagated to all polygons which use the material. The following line of code demonstrates how this is achieved:
RwSetMaterialDiffuse(RwGetPolygonMaterial(polygon), kd);
See Also