Example #1
0
 public void method_1()
 {
     this.RGB  = (WHC.OrderWater.Commons.RGB) this.HSB;
     this.CMYK = (WHC.OrderWater.Commons.CMYK) this.HSB;
 }
Example #2
0
 public void method_2()
 {
     this.RGB = (WHC.OrderWater.Commons.RGB) this.CMYK;
     this.HSB = (WHC.OrderWater.Commons.HSB) this.CMYK;
 }
Example #3
0
 public MyColor(Color color)
 {
     this.RGB  = color;
     this.HSB  = color;
     this.CMYK = color;
 }