f_equal
parent
edfca12b18
commit
a3643e4cca
|
@ -11,7 +11,13 @@
|
||||||
#include <blt/math/matrix.h>
|
#include <blt/math/matrix.h>
|
||||||
|
|
||||||
namespace blt {
|
namespace blt {
|
||||||
|
|
||||||
|
constexpr float EPSILON = 0.0001f;
|
||||||
|
|
||||||
|
static inline constexpr bool f_equal(float v1, float v2) {
|
||||||
|
return v1 >= v2 - EPSILON && v1 <= v2 + EPSILON;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* fast number integer
|
* fast number integer
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue