2018-08-01 10:10:27 +00:00
|
|
|
#include <glm/ext/matrix_relational.hpp>
|
2018-08-05 13:22:49 +00:00
|
|
|
#include <glm/matrix_mat4x3.hpp>
|
|
|
|
#include <glm/vector_vec4.hpp>
|
2018-08-01 10:10:27 +00:00
|
|
|
|
|
|
|
int test_equal()
|
|
|
|
{
|
|
|
|
int Error = 0;
|
|
|
|
|
|
|
|
Error += glm::all(glm::equal(glm::mat4x3(1), glm::mat4x3(1), 0.001f)) ? 0 : 1;
|
|
|
|
Error += glm::all(glm::equal(glm::mat4x3(1), glm::mat4x3(2), glm::vec4(0.001f))) ? 1 : 0;
|
|
|
|
|
|
|
|
return Error;
|
|
|
|
}
|
|
|
|
|
|
|
|
int test_notEqual()
|
|
|
|
{
|
|
|
|
int Error = 0;
|
|
|
|
|
|
|
|
Error += !glm::any(glm::notEqual(glm::mat4x3(1), glm::mat4x3(1), 0.001f)) ? 0 : 1;
|
|
|
|
Error += !glm::any(glm::notEqual(glm::mat4x3(1), glm::mat4x3(2), glm::vec4(0.001f))) ? 1 : 0;
|
|
|
|
|
|
|
|
return Error;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
int Error = 0;
|
|
|
|
|
|
|
|
Error += test_equal();
|
|
|
|
Error += test_notEqual();
|
|
|
|
|
|
|
|
return Error;
|
|
|
|
}
|