8582670a34
Co-authored-by: あく <alleteam@gmail.com> Co-authored-by: gornekich <n.gorbadey@gmail.com>
9 lines
174 B
C
9 lines
174 B
C
#include "float_tools.h"
|
|
|
|
#include <math.h>
|
|
#include <float.h>
|
|
|
|
bool float_is_equal(float a, float b) {
|
|
return fabsf(a - b) <= FLT_EPSILON * fmaxf(fabsf(a), fabsf(b));
|
|
}
|