00001
00002
00004
00005
00006
00007
00009
00010
00011
00013
00014 #ifndef glm_gtx_epsilon
00015 #define glm_gtx_epsilon
00016
00017
00018 #include "../glm.hpp"
00019 #include "../gtc/half_float.hpp"
00020
00021 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00022 # pragma message("GLM: GLM_GTX_epsilon extension included")
00023 #endif
00024
00025 namespace glm
00026 {
00027 namespace test{
00028 void main_gtx_epsilon();
00029 }
00030
00031 namespace gtx{
00033 namespace epsilon
00034 {
00037
00040 template <typename genTypeT, typename genTypeU>
00041 bool equalEpsilon(
00042 genTypeT const & x,
00043 genTypeT const & y,
00044 genTypeU const & epsilon);
00045
00048 template <typename genTypeT, typename genTypeU>
00049 bool notEqualEpsilon(
00050 genTypeT const & x,
00051 genTypeT const & y,
00052 genTypeU const & epsilon);
00053
00055
00056 }
00057 }
00058 }
00059
00060 #include "epsilon.inl"
00061
00062 namespace glm{using namespace gtx::epsilon;}
00063
00064 #endif//glm_gtx_epsilon