mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 05:25:02 +00:00
Added test_isOrthogonal for zero matrix
This commit is contained in:
parent
efec5db081
commit
2af53d5981
1 changed files with 8 additions and 2 deletions
|
@ -45,8 +45,14 @@ int test_isOrthogonal()
|
|||
{
|
||||
int Error(0);
|
||||
|
||||
bool TestA = glm::isOrthogonal(glm::mat4(1), 0.00001f);
|
||||
Error += TestA ? 0 : 1;
|
||||
{
|
||||
bool TestA = glm::isOrthogonal(glm::mat4(1), 0.00001f);
|
||||
Error += TestA ? 0 : 1;
|
||||
}
|
||||
{
|
||||
bool TestA = glm::isOrthogonal(glm::mat4(0), 0.00001f);
|
||||
Error += TestA ? 1 : 0;
|
||||
}
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue