mirror of
https://github.com/g-truc/glm.git
synced 2025-04-06 14:05:01 +00:00
Fixed tests
This commit is contained in:
parent
0b39a77057
commit
75a711dffb
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ int test_intersectLineTriangle()
|
|||
|
||||
bool const Result = glm::intersectLineTriangle(Orig, Dir, Vert0, Vert1, Vert2, Position);
|
||||
|
||||
Error += glm::all(glm::epsilonEqual(Position, glm::vec3(0), std::numeric_limits<float>::epsilon())) ? 0 : 1;
|
||||
Error += glm::all(glm::epsilonEqual(Position, glm::vec3(2.0f, 0.0f, 0.0f), std::numeric_limits<float>::epsilon())) ? 0 : 1;
|
||||
Error += Result ? 0 : 1;
|
||||
|
||||
return Error;
|
||||
|
|
Loading…
Add table
Reference in a new issue