public int CompareTo(AlphaAdjustmentChange other) { return(parameterizedLocation.CompareTo(other.ParameterizedLocation)); }
public int CompareTo(Handle other) { return(ParameterizedLocation.CompareTo(other.ParameterizedLocation)); }
public int CompareTo(AdjustedWaypoint other) { int result = ParameterizedLocation.CompareTo(other.ParameterizedLocation); return(result != 0 ? result : Type.CompareTo(other.Type)); }