mirror of
https://github.com/holub/mame
synced 2025-05-05 05:53:05 +03:00

(nw) In future, could people please use stable branches when updating 3rd-party libraries, not unstable development snapshots? It will help with stability.
19 lines
302 B
C++
19 lines
302 B
C++
#include <glm/gtx/matrix_decompose.hpp>
|
|
|
|
int main()
|
|
{
|
|
int Error(0);
|
|
|
|
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);
|
|
|
|
return Error;
|
|
}
|