Misc Fixes

This commit is contained in:
hondacrx
2019-08-17 14:03:21 -04:00
parent 701a26e208
commit 58b142f26e
5 changed files with 33 additions and 17 deletions
+11 -11
View File
@@ -78,13 +78,13 @@ public static class MathFunctions
}
#endregion
static double eps(double a, double b)
static double eps(float a, float b)
{
double aa = Math.Abs(a) + 1.0;
if (double.IsPositiveInfinity(aa))
return double.Epsilon;
float aa = Math.Abs(a) + 1.0f;
if (float.IsPositiveInfinity(aa))
return 0.00001f;
return double.Epsilon * aa;
return 0.00001f * aa;
}
public static float lerp(float a, float b, float f)
@@ -98,27 +98,27 @@ public static class MathFunctions
}
#region Fuzzy
public static bool fuzzyEq(double a, double b)
public static bool fuzzyEq(float a, float b)
{
return (a == b) || (Math.Abs(a - b) <= eps(a, b));
}
public static bool fuzzyGt(double a, double b)
public static bool fuzzyGt(float a, float b)
{
return a > b + eps(a, b);
}
public static bool fuzzyLt(double a, double b)
public static bool fuzzyLt(float a, float b)
{
return a < b - eps(a, b);
}
public static bool fuzzyNe(double a, double b)
public static bool fuzzyNe(float a, float b)
{
return !fuzzyEq(a, b);
}
public static bool fuzzyLe(double a, double b)
public static bool fuzzyLe(float a, float b)
{
return a < b + eps(a, b);
}
public static bool fuzzyGe(double a, double b)
public static bool fuzzyGe(float a, float b)
{
return a > b - eps(a, b);
}