public bool Equals(AnimationFrame <T> other) { return(Time.Equals(other.Time) && Value.Equals(other.Value)); }
public int Compare(AnimationFrame <T> x, AnimationFrame <T> y) { float left = x.Time, right = y.Time; return(left > right ? 1 : left < right ? -1 : 0); }