/// <summary> /// Tests whether the specified <see cref="Scale"/> is equivalent to this <see cref="Scale" />. /// </summary> /// <param name="other">The scale to test.</param> /// <returns><c>true</c> if <paramref name="other" /> is equivalent to this <see cref="Scale" />; otherwise, <c>false</c>.</returns> public bool Equals(Scale other) => Horizontal.EqualsInTolerance(other.Horizontal) && Vertical.EqualsInTolerance(other.Vertical);