Exemple #1
0
 /// <summary>
 /// Indicates whether or not <paramref name="other"/> is between this pair and (0, 0).
 /// </summary>
 public Boolean Contains(CoordinatePair other) => !other.IsNegative && other.X <= X && other.Y <= Y;