Ejemplo n.º 1
0
 public int CompareTo(AlphaAdjustmentChange other)
 {
     return(parameterizedLocation.CompareTo(other.ParameterizedLocation));
 }
Ejemplo n.º 2
0
 public int CompareTo(Handle other)
 {
     return(ParameterizedLocation.CompareTo(other.ParameterizedLocation));
 }
Ejemplo n.º 3
0
        public int CompareTo(AdjustedWaypoint other)
        {
            int result = ParameterizedLocation.CompareTo(other.ParameterizedLocation);

            return(result != 0 ? result : Type.CompareTo(other.Type));
        }