integer.hpp

00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
00004 // Created : 2005-12-24
00005 // Updated : 2006-11-14
00006 // Licence : This source is under MIT License
00007 // File    : glm/gtx/integer.hpp
00009 // Dependency:
00010 // - GLM core
00012 
00013 #ifndef glm_gtx_integer
00014 #define glm_gtx_integer
00015 
00016 // Dependency:
00017 #include "../glm.hpp"
00018 
00019 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00020 #       pragma message("GLM: GLM_GTX_integer extension included")
00021 #endif
00022 
00023 namespace glm
00024 {
00025         namespace gtx{
00027         namespace integer
00028         {
00031 
00034                 int pow(int x, int y);
00035 
00038                 int sqrt(int x);
00039 
00042                 int mod(int x, int y);
00043 
00046                 template <typename genType> 
00047                 genType factorial(genType const & x);
00048 
00050 
00051         }//namespace integer
00052         }//namespace gtx
00053 }//namespace glm
00054 
00055 #include "integer.inl"
00056 
00057 namespace glm{using namespace gtx::integer;}
00058 
00059 #endif//glm_gtx_integer