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