mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 21:45:02 +00:00
fix reciprocal test
This commit is contained in:
parent
23dcea8995
commit
da542d6354
1 changed files with 2 additions and 2 deletions
|
@ -118,8 +118,8 @@ static int test_acsch()
|
|||
{
|
||||
int Error = 0;
|
||||
|
||||
Error += glm::acsch(0.0001) > 10000.0, 0.01 ? 0 : 1;
|
||||
Error += glm::acsch(-0.0001) < -10000.0, 0.01 ? 0 : 1;
|
||||
Error += glm::acsch(0.0001) > 10000.0 ? 0 : 1;
|
||||
Error += glm::acsch(-0.0001) < -10000.0 ? 0 : 1;
|
||||
|
||||
Error += glm::equal(glm::acsch(100.0), 0.0, 0.01) ? 0 : 1;
|
||||
Error += glm::equal(glm::acsch(-100.0), 0.0, 0.01) ? 0 : 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue