Share

Autodesk.AutoCAD.GraphicsInterface.VSFaceLightingModel Enumeration

Description

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

It describes the lighting model to apply to the faces of drawables.

C#

public enum VSFaceLightingModel {
  Invisible,
  Constant,
  Phong,
  Gooch
}

Visual Basic

Public Enum VSFaceLightingModel
  Invisible
  Constant
  Phong
  Gooch
End Enum

Members

Members Description
Invisible Faces are not drawn.
Constant Faces are drawn in a constant color.
Phong Faces are drawn to approximate realistic direct lighting.
Gooch Gooch, A., Gooch, B., Shirley, P., and Cohen, E. 1998. A non-photorealistic lighting model for automatic technical illustration. In proceedings of the 25th Annual Conference on Computer Graphics and Interactive Techniques SIGGRAPH '98. ACM Press, New York, NY, 447-452.

Was this information helpful?