GLM Version 0.9.0

determinant.hpp

00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2009 G-Truc Creation (www.g-truc.net)
00004 // Created : 2005-12-21
00005 // Updated : 2008-04-23
00006 // Licence : This source is under MIT License
00007 // File    : glm/gtx/determinant.hpp
00009 // Dependency:
00010 // - GLM core
00012 
00013 #ifndef glm_gtx_determinant
00014 #define glm_gtx_determinant
00015 
00016 // Dependency:
00017 #include "../glm.hpp"
00018 #include "../gtc/matrix_operation.hpp"
00019 
00020 namespace glm
00021 {
00022         namespace test{
00023                 void main_gtx_determinant();
00024         }//namespace test
00025 
00026         namespace gtx{
00028         namespace determinant
00029         {
00030                 using namespace gtc::matrix_operation;
00031 
00032         }//namespace determinant
00033         }//namespace gtx
00034 }//namespace glm
00035 
00036 #define GLM_GTX_determinant namespace gtx::determinant
00037 #ifndef GLM_GTX_GLOBAL
00038 namespace glm {using GLM_GTX_determinant;}
00039 #endif//GLM_GTC_GLOBAL
00040 
00041 #include "determinant.inl"
00042 
00043 #endif//glm_gtx_determinant