mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 12:41:54 +00:00
Fixed spaces
This commit is contained in:
parent
a69de771a0
commit
c9a0b87c7b
@ -8,8 +8,9 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#include <glm/glm.hpp>
|
#include <glm/glm.hpp>
|
||||||
|
#include <glm/gtc/epsilon.hpp>
|
||||||
|
|
||||||
static int test_operators()
|
int test_operators()
|
||||||
{
|
{
|
||||||
glm::mat2x2 l(1.0f);
|
glm::mat2x2 l(1.0f);
|
||||||
glm::mat2x2 m(1.0f);
|
glm::mat2x2 m(1.0f);
|
||||||
@ -28,11 +29,40 @@ static int test_operators()
|
|||||||
return (S && !R) ? 0 : 1;
|
return (S && !R) ? 0 : 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main()
|
int test_inverse()
|
||||||
{
|
{
|
||||||
int Error = 0;
|
int Error(0);
|
||||||
|
|
||||||
Error += test_operators();
|
{
|
||||||
|
glm::mat2 Matrix(1, 2, 3, 4);
|
||||||
|
glm::mat2 Inverse = glm::inverse(Matrix);
|
||||||
|
glm::mat2 Identity = Matrix * Inverse;
|
||||||
|
|
||||||
|
Error += glm::epsilonEqual(Identity[0][0], 1.0f, 0.01f) ? 0 : 1;
|
||||||
|
Error += glm::epsilonEqual(Identity[0][1], 0.0f, 0.01f) ? 0 : 1;
|
||||||
|
Error += glm::epsilonEqual(Identity[1][0], 0.0f, 0.01f) ? 0 : 1;
|
||||||
|
Error += glm::epsilonEqual(Identity[1][1], 1.0f, 0.01f) ? 0 : 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
glm::mat2 Matrix(1, 2, 3, 4);
|
||||||
|
glm::mat2 Identity = Matrix / Matrix;
|
||||||
|
|
||||||
|
Error += glm::epsilonEqual(Identity[0][0], 1.0f, 0.01f) ? 0 : 1;
|
||||||
|
Error += glm::epsilonEqual(Identity[0][1], 0.0f, 0.01f) ? 0 : 1;
|
||||||
|
Error += glm::epsilonEqual(Identity[1][0], 0.0f, 0.01f) ? 0 : 1;
|
||||||
|
Error += glm::epsilonEqual(Identity[1][1], 1.0f, 0.01f) ? 0 : 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Error;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int Error(0);
|
||||||
|
|
||||||
|
Error += test_operators();
|
||||||
|
Error += test_inverse();
|
||||||
|
|
||||||
return Error;
|
return Error;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user