aboutsummaryrefslogtreecommitdiff
path: root/mons_math/src/util.c
blob: f0f3ec0f7f9d910f6d5a6c68f4efbaa9e7e47b98 (plain)
1
2
3
4
5
6
7
#include "mons_math/util.h"
#include <math.h>

int mons_float_approx_equal(float a, float b) {
    return fabs(a - b) < MONS_FLOAT_EQUAL_EPSILON;
}