Esempio n. 1
0
 public ColorHLS(ColorHLS hls)
 {
     _alpha      = hls.Alpha;
     _red        = hls.Red;
     _blue       = hls.Blue;
     _green      = hls.Green;
     _luminance  = hls.Luminance;
     _hue        = hls.Hue;
     _saturation = hls.Saturation;
 }
Esempio n. 2
0
        public ColorHLS Clone()
        {
            ColorHLS c = new ColorHLS(this);

            return(c);
        }