2013-10-27 18:25:03 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
2014-01-04 21:32:28 +00:00
|
|
|
// OpenGL Mathematics Copyright (c) 2005 - 2014 G-Truc Creation (www.g-truc.net)
|
2013-10-27 18:25:03 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Created : 2013-10-25
|
|
|
|
// Updated : 2013-10-25
|
|
|
|
// Licence : This source is under MIT licence
|
2013-10-27 22:38:22 +00:00
|
|
|
// File : test/gtx/matrix_cross_product.hpp
|
2013-10-27 18:25:03 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <glm/glm.hpp>
|
|
|
|
#include <glm/gtc/type_precision.hpp>
|
2013-10-27 22:38:22 +00:00
|
|
|
#include <glm/gtx/matrix_cross_product.hpp>
|
2013-10-27 18:25:03 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
int Error(0);
|
|
|
|
|
|
|
|
return Error;
|
|
|
|
}
|