Beispiel #1
0
 public void RGBUpdate()
 {
     this.HSB  = this.RGB;
     this.CMYK = this.RGB;
 }
Beispiel #2
0
 public void HSBUpdate()
 {
     this.RGB  = this.HSB;
     this.CMYK = this.HSB;
 }
Beispiel #3
0
 public MyColor(Color color)
 {
     this.RGB  = color;
     this.HSB  = color;
     this.CMYK = color;
 }