Ejemplo n.º 1
0
        private AciColor Color2FromTint(double value)
        {
            double h, s, l;

            AciColor.ToHsl(this.color1, out h, out s, out l);
            return(AciColor.FromHsl(h, s, value));
        }