Added initial commit for GLM_GTX_matrix_decompose #227

This commit is contained in:
Christophe Riccio
2014-08-31 18:12:38 -04:00
parent 842cea8747
commit 3b7aadc2e3
7 changed files with 312 additions and 7 deletions

View File

@@ -0,0 +1,17 @@
///////////////////////////////////////////////////////////////////////////////////////////////////
// OpenGL Mathematics Copyright (c) 2005 - 2014 G-Truc Creation (www.g-truc.net)
///////////////////////////////////////////////////////////////////////////////////////////////////
// Created : 2014-08-31
// Updated : 2014-08-31
// Licence : This source is under MIT licence
// File : test/gtx/decomposition.cpp
///////////////////////////////////////////////////////////////////////////////////////////////////
#include <glm/gtx/matrix_decompose.hpp>
int main()
{
int Error(0);
return Error;
}