From e28dd1db5928c47ab561c6e86e547205c3d5aa46 Mon Sep 17 00:00:00 2001 From: CaptainCarrot Date: Thu, 14 Sep 2017 09:08:44 +0200 Subject: [PATCH] Update gtx_quaternion.cpp --- test/gtx/gtx_quaternion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/gtx/gtx_quaternion.cpp b/test/gtx/gtx_quaternion.cpp index 164cbf2a..533c4ef4 100644 --- a/test/gtx/gtx_quaternion.cpp +++ b/test/gtx/gtx_quaternion.cpp @@ -101,7 +101,7 @@ int test_quat_lookAt() glm::vec3 center(1.1f, -2.0f, 3.1416f); glm::vec3 up = glm::vec3(-0.17f, 7.23f, -1.744f); - glm::quat test_quat = glm::quatLookAt(center - eye, up); + glm::quat test_quat = glm::quatLookAt(glm::normalize(center - eye), up); glm::quat test_mat = glm::conjugate(glm::quat_cast(glm::lookAt(eye, center, up))); Error += static_cast(glm::abs(glm::length(test_quat) - 1.0f) > glm::epsilon());