glm/test/gtx/gtx_quaternion.cpp

57 lines
1.7 KiB
C++
Raw Normal View History

2011-05-25 08:07:49 +00:00
///////////////////////////////////////////////////////////////////////////////////////////////////
2012-01-09 11:20:01 +00:00
// OpenGL Mathematics Copyright (c) 2005 - 2012 G-Truc Creation (www.g-truc.net)
2011-05-25 08:07:49 +00:00
///////////////////////////////////////////////////////////////////////////////////////////////////
2011-05-25 08:50:01 +00:00
// Created : 2011-05-25
2011-05-31 18:18:49 +00:00
// Updated : 2011-05-31
2011-05-25 08:07:49 +00:00
// Licence : This source is under MIT licence
2011-05-25 08:50:01 +00:00
// File : test/gtx/quaternion.cpp
2011-05-25 08:07:49 +00:00
///////////////////////////////////////////////////////////////////////////////////////////////////
#include <glm/glm.hpp>
#include <glm/gtc/epsilon.hpp>
2011-05-25 08:50:01 +00:00
#include <glm/gtx/quaternion.hpp>
2011-06-01 15:46:04 +00:00
2011-05-31 18:18:49 +00:00
int test_quat_fastMix()
{
int Error = 0;
glm::quat A = glm::angleAxis(0.0f, glm::vec3(0, 0, 1));
glm::quat B = glm::angleAxis(90.0f, glm::vec3(0, 0, 1));
glm::quat C = glm::fastMix(A, B, 0.5f);
glm::quat D = glm::angleAxis(45.0f, glm::vec3(0, 0, 1));
Error += glm::equalEpsilon(C.x, D.x, 0.01f) ? 0 : 1;
Error += glm::equalEpsilon(C.y, D.y, 0.01f) ? 0 : 1;
Error += glm::equalEpsilon(C.z, D.z, 0.01f) ? 0 : 1;
Error += glm::equalEpsilon(C.w, D.w, 0.01f) ? 0 : 1;
return Error;
}
int test_quat_shortMix()
{
int Error = 0;
glm::quat A = glm::angleAxis(0.0f, glm::vec3(0, 0, 1));
glm::quat B = glm::angleAxis(90.0f, glm::vec3(0, 0, 1));
glm::quat C = glm::shortMix(A, B, 0.5f);
glm::quat D = glm::angleAxis(45.0f, glm::vec3(0, 0, 1));
Error += glm::equalEpsilon(C.x, D.x, 0.01f) ? 0 : 1;
Error += glm::equalEpsilon(C.y, D.y, 0.01f) ? 0 : 1;
Error += glm::equalEpsilon(C.z, D.z, 0.01f) ? 0 : 1;
Error += glm::equalEpsilon(C.w, D.w, 0.01f) ? 0 : 1;
return Error;
}
2011-05-25 08:07:49 +00:00
int main()
{
int Error = 0;
2011-05-25 08:50:01 +00:00
Error += test_quat_fastMix();
2011-05-31 18:18:49 +00:00
Error += test_quat_shortMix();
2011-05-25 08:07:49 +00:00
return Error;
}