Share

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.

C#

public enum VSFaceLightingQuality {
  NoLighting,
  PerFaceLighting,
  PerVertexLighting,
  PerPixelLighting
}

Visual Basic

Public Enum VSFaceLightingQuality
  NoLighting
  PerFaceLighting
  PerVertexLighting
  PerPixelLighting
End Enum

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.

Was this information helpful?