Autodesk.AutoCAD.GraphicsInterface Namespace > VSFaceLightingQuality Enumeration
Autodesk.AutoCAD.GraphicsInterface.VSFaceLightingQuality Enumeration   
Description

This .NET class wraps the ObjectARX enum AcGiVisualStyleProperties::FaceLightingQuality

It describes the calculation method used for application of lighting effects to faces.

Visual Basic
Public Enum VSFaceLightingQuality
  NoLighting
  PerFaceLighting
  PerVertexLighting
  PerPixelLighting
End Enum
C#
public enum VSFaceLightingQuality {
  NoLighting,
  PerFaceLighting,
  PerVertexLighting,
  PerPixelLighting
}
Members
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. 
   Comments?