ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Formats.CAD Namespace / CADLight.AttenuationModel Enumeration




In This Topic
    CADLight.AttenuationModel Enumeration
    In This Topic
    Lighting attenuation model which controls the rate of loss of flux from the light source.
    Syntax
    'Declaration
     
    Public Enum CADLight.AttenuationModel 
       Inherits System.Enum
    'Usage
     
    Dim instance As CADLight.AttenuationModel
    public enum CADLight.AttenuationModel : System.Enum 
    __value public enum CADLight.AttenuationModel : public System.Enum 
    public enum class CADLight.AttenuationModel : public System.Enum 
    Members
    MemberValueDescription
    LINEAR1Light luminosity decreases with the inverse of the distance from the light source. (1.0 / distance)
    NONE0Light luminosity is constant irregardless of distance from the light source.
    SQUARE2Light 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