glm/test/gtx/gtx_matrix_decompose.cpp

22 lines
420 B
C++
Raw Normal View History

2016-11-12 13:19:22 +00:00
#define GLM_ENABLE_EXPERIMENTAL
#include <glm/gtx/matrix_decompose.hpp>
int main()
{
int Error(0);
2015-08-01 09:35:57 +00:00
glm::mat4 Matrix(1);
glm::vec3 Scale;
glm::quat Orientation;
glm::vec3 Translation;
glm::vec3 Skew(1);
glm::vec4 Perspective(1);
glm::decompose(Matrix, Scale, Orientation, Translation, Skew, Perspective);
glm::mat4 Out = glm::recompose(Scale, Orientation, Translation, Skew, Perspective);
return Error;
}