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