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

 

This .NET enum wraps the AcGiShadowParameters::ShadowType ObjectARX enum. It gives the method used to calculate shadows.

Visual Basic
Public Enum ShadowType
  RayTraced
  Maps
  Sampled
End Enum
C#
public enum ShadowType {
  RayTraced,
  Maps,
  Sampled
}
Members
Members 
Description 
RayTraced 
Shadows are calculated using a ray-trace algorithm. 
Maps 
Shadow maps are created for each light. 
Sampled 
The area-sampled shadow algorithm models the effect of extended light sources which typically exhibit penumbra. 
   Comments?