2016-11-12 13:19:22 +00:00
|
|
|
#define GLM_ENABLE_EXPERIMENTAL
|
2011-11-22 17:52:53 +00:00
|
|
|
#include <glm/gtx/matrix_query.hpp>
|
|
|
|
|
|
|
|
int test_isNull()
|
|
|
|
{
|
2013-04-10 11:46:27 +00:00
|
|
|
int Error(0);
|
|
|
|
|
2011-11-22 17:52:53 +00:00
|
|
|
bool TestA = glm::isNull(glm::mat4(0), 0.00001f);
|
2013-04-10 11:46:27 +00:00
|
|
|
Error += TestA ? 0 : 1;
|
2011-11-22 17:52:53 +00:00
|
|
|
|
2013-04-10 11:46:27 +00:00
|
|
|
return Error;
|
2011-11-22 17:52:53 +00:00
|
|
|
}
|
|
|
|
|
2011-12-06 12:22:43 +00:00
|
|
|
int test_isIdentity()
|
|
|
|
{
|
2013-04-10 11:46:27 +00:00
|
|
|
int Error(0);
|
|
|
|
|
2011-12-06 12:22:43 +00:00
|
|
|
{
|
|
|
|
bool TestA = glm::isIdentity(glm::mat2(1), 0.00001f);
|
|
|
|
Error += TestA ? 0 : 1;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
bool TestA = glm::isIdentity(glm::mat3(1), 0.00001f);
|
|
|
|
Error += TestA ? 0 : 1;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
bool TestA = glm::isIdentity(glm::mat4(1), 0.00001f);
|
|
|
|
Error += TestA ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
2013-04-10 11:46:27 +00:00
|
|
|
return Error;
|
2011-12-06 12:22:43 +00:00
|
|
|
}
|
|
|
|
|
2011-11-22 17:52:53 +00:00
|
|
|
int test_isNormalized()
|
|
|
|
{
|
2013-04-10 11:46:27 +00:00
|
|
|
int Error(0);
|
|
|
|
|
2011-11-22 17:52:53 +00:00
|
|
|
bool TestA = glm::isNormalized(glm::mat4(1), 0.00001f);
|
2013-04-10 11:46:27 +00:00
|
|
|
Error += TestA ? 0 : 1;
|
2011-11-22 17:52:53 +00:00
|
|
|
|
2013-04-10 11:46:27 +00:00
|
|
|
return Error;
|
2011-11-22 17:52:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int test_isOrthogonal()
|
|
|
|
{
|
2013-04-10 11:46:27 +00:00
|
|
|
int Error(0);
|
|
|
|
|
2011-11-22 17:52:53 +00:00
|
|
|
bool TestA = glm::isOrthogonal(glm::mat4(1), 0.00001f);
|
2013-04-10 11:46:27 +00:00
|
|
|
Error += TestA ? 0 : 1;
|
2011-11-22 17:52:53 +00:00
|
|
|
|
2013-04-10 11:46:27 +00:00
|
|
|
return Error;
|
2011-11-22 17:52:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
int Error(0);
|
|
|
|
|
|
|
|
Error += test_isNull();
|
2011-12-06 12:22:43 +00:00
|
|
|
Error += test_isIdentity();
|
2011-11-22 17:52:53 +00:00
|
|
|
Error += test_isNormalized();
|
|
|
|
Error += test_isOrthogonal();
|
|
|
|
|
|
|
|
return Error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|