This .NET enum wraps the AcGiShadowParameters::ShadowType ObjectARX enum. It gives the method used to calculate shadows.
Public Enum ShadowType RayTraced Maps Sampled End Enum
public enum ShadowType { RayTraced, Maps, Sampled }
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? |