mirror of
https://github.com/g-truc/glm.git
synced 2025-04-13 00:33:01 +00:00
Fixed quaternion mul/vec test
This commit is contained in:
parent
c440b9515a
commit
83f594b5ed
1 changed files with 5 additions and 1 deletions
|
@ -258,12 +258,16 @@ int test_quat_type()
|
|||
|
||||
int test_quat_mul_vec()
|
||||
{
|
||||
int Error(0);
|
||||
|
||||
glm::quat q = glm::angleAxis(glm::pi<float>() * 0.5f, glm::vec3(0, 0, 1));
|
||||
glm::vec3 v(1, 0, 0);
|
||||
glm::vec3 u(q * v);
|
||||
glm::vec3 w(u * q);
|
||||
|
||||
return glm::all(glm::epsilonEqual(v, w, 0.01f));
|
||||
Error += glm::all(glm::epsilonEqual(v, w, 0.01f)) ? 0 : 1;
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
int test_quat_ctr()
|
||||
|
|
Loading…
Add table
Reference in a new issue