Beispiel #1
0
        public RGBColor(RGBWColor c)
        {
            var rgb = c.toRGB();

            this.r = rgb.r;
            this.g = rgb.g;
            this.b = rgb.b;
        }