Added test_isOrthogonal for zero matrix

This commit is contained in:
tetrisplusplus 2023-01-23 21:05:35 +09:00 committed by Christophe
parent 2c74560914
commit aa4d729e48

View File

@ -45,8 +45,14 @@ int test_isOrthogonal()
{ {
int Error(0); int Error(0);
{
bool TestA = glm::isOrthogonal(glm::mat4(1), 0.00001f); bool TestA = glm::isOrthogonal(glm::mat4(1), 0.00001f);
Error += TestA ? 0 : 1; Error += TestA ? 0 : 1;
}
{
bool TestA = glm::isOrthogonal(glm::mat4(0), 0.00001f);
Error += TestA ? 1 : 0;
}
return Error; return Error;
} }