epsilon.hpp

00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
00004 // Created : 2005-12-21
00005 // Updated : 2006-11-13
00006 // Licence : This source is under MIT License
00007 // File    : glm/gtx/epsilon.hpp
00009 // Dependency:
00010 // - GLM core
00011 // - GLM_GTX_half
00013 
00014 #ifndef glm_gtx_epsilon
00015 #define glm_gtx_epsilon
00016 
00017 // Dependency:
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         }//namespace test
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         }//namespace epsilon
00057         }//namespace gtx
00058 }//namespace glm
00059 
00060 #include "epsilon.inl"
00061 
00062 namespace glm{using namespace gtx::epsilon;}
00063 
00064 #endif//glm_gtx_epsilon