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 namespace glm
00020 {
00021 namespace gtx{
00023 namespace integer
00024 {
00027 int pow(int x, int y);
00028
00031 int sqrt(int x);
00032
00035 int mod(int x, int y);
00036
00039 template <typename genType>
00040 genType factorial(genType const & x);
00041
00042 }
00043 }
00044 }
00045
00046 #define GLM_GTX_integer namespace gtx::integer
00047 #ifndef GLM_GTX_GLOBAL
00048 namespace glm {using GLM_GTX_integer;}
00049 #endif//GLM_GTX_GLOBAL
00050
00051 #include "integer.inl"
00052
00053 #endif//glm_gtx_integer