AForge.Imaging.HSL.HSL C# (CSharp) Method

HSL() public method

Initializes a new instance of the HSL class.
public HSL ( int hue, float saturation, float luminance ) : System
hue int Hue component.
saturation float Saturation component.
luminance float Luminance component.
return System
        public HSL( int hue, float saturation, float luminance )
        {
            this.Hue        = hue;
            this.Saturation = saturation;
            this.Luminance  = luminance;
        }

Same methods

HSL::HSL ( ) : System