00001
00002
00004
00005
00006
00007
00009
00010
00012
00013 #ifndef glm_gtx_integer
00014 #define glm_gtx_integer
00015
00016
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 namespace gtx{
00025 namespace integer
00026 {
00029
00032 int pow(int x, int y);
00033
00036 int sqrt(int x);
00037
00040 int mod(int x, int y);
00041
00044 template <typename genType>
00045 genType factorial(genType const & x);
00046
00048 }
00049 }
00050 }
00051
00052 #include "integer.inl"
00053
00054 namespace glm{using namespace gtx::integer;}
00055
00056 #endif//glm_gtx_integer