Example #1
0
File: HSV.cs Project: drodov/DPSI
 public Color ToColor()
 {
     var rgb = new RGB(this);
     return Color.FromArgb(rgb.Red, rgb.Green, rgb.Blue);
 }
Example #2
0
File: HSV.cs Project: drodov/DPSI
 public HSV(RGB rgb)
 {
     Hue = GetHue(rgb.Red, rgb.Green, rgb.Blue);
     Saturation = GetSaturation(rgb.Red, rgb.Green, rgb.Blue);
     Value = GetValue(rgb.Red, rgb.Green, rgb.Blue);
 }