You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UFraction32.IsInifity(new UFraction32(0,0)) and Fraction32.IsInifity(new Fraction32(0,0)) return both true even though the number is actually NaN. They should return false.
This is caused by the fact, that IsInfinity does not check whether numenator is not 0. See:
UFraction32.IsInifity(new UFraction32(0,0))
andFraction32.IsInifity(new Fraction32(0,0))
return bothtrue
even though the number is actually NaN. They should return false.This is caused by the fact, that IsInfinity does not check whether numenator is not 0. See:
exiflibrary/ExifLibrary/MathEx.cs
Line 203 in 1e0f838
and
exiflibrary/ExifLibrary/MathEx.cs
Line 854 in 1e0f838
The text was updated successfully, but these errors were encountered: