Esempio n. 1
0
 public bool Equals(HSVColor other)
 {
     return(Hue.IsCloseTo(other.Hue) && A.IsCloseTo(other.A) && Saturation.IsCloseTo(other.Saturation) && Value.IsCloseTo(other.Value));
 }