Lighting attenuation model which controls the rate of loss of flux from the light source.
Syntax
'Declaration
Public Enum CADLight.AttenuationModel
Inherits System.Enum
public enum CADLight.AttenuationModel : System.Enum
__value public enum CADLight.AttenuationModel : public System.Enum
public enum class CADLight.AttenuationModel : public System.Enum
Members
Member | Description |
LINEAR |
Light luminosity decreases with the inverse of the distance from the light source. (1.0 / distance)
|
NONE |
Light luminosity is constant irregardless of distance from the light source.
|
SQUARE |
Light luminosity decreases with the inverse square of the distance from the light source. (1.0 / distance^2)
|
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
ImageGear.Formats.CAD.CADLight.AttenuationModel
See Also