This .NET class wraps the ObjectARX enum AcGiVisualStyleProperties::FaceLightingQuality.
It describes the calculation method used for application of lighting effects to faces.
Public Enum VSFaceLightingQuality NoLighting PerFaceLighting PerVertexLighting PerPixelLighting End Enum
public enum VSFaceLightingQuality {
NoLighting,
PerFaceLighting,
PerVertexLighting,
PerPixelLighting
}
| Members | Description |
|---|---|
| NoLighting | Apply no lighting calculations to the faces. |
| PerFaceLighting | Each face has a color calculated based on its orientation to the light source(s) of the scene. |
| PerVertexLighting | Each vertex of a face has its color calculated based on its orientation to the light source(s) of the scene. |
| PerPixelLighting | Each pixel of a face has its color calculated based on its orientation to the light source(s) of the scene. |