This commit is contained in:
Бранимир Караџић
2021-10-13 19:54:27 -07:00
parent 6921fc3438
commit 84a38eede0
4 changed files with 24 additions and 40 deletions

View File

@@ -1057,7 +1057,7 @@ void mtxFromSrt(float* _outMtx, const Srt& _srt)
bool isNearZero(float _v)
{
return equal(_v, 0.0f, 0.00001f);
return isEqual(_v, 0.0f, 0.00001f);
}
bool isNearZero(const Vec3& _v)