GLM Version 0.9.0
|
00001 00002 // OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net) 00004 // Created : 2008-06-22 00005 // Updated : 2008-10-27 00006 // Licence : This source is under MIT License 00007 // File : glm/gtx/comparison.hpp 00009 // Dependency: 00010 // - GLM core 00012 00013 #ifndef glm_gtx_comparison 00014 #define glm_gtx_comparison 00015 00016 // Dependency: 00017 #include "../glm.hpp" 00018 00019 namespace glm 00020 { 00021 namespace test{ 00022 void main_gtx_comparison(); 00023 }//namespace test 00024 00025 namespace gtx{ 00027 namespace comparison 00028 { 00029 /* 00032 template <typename T> 00033 bool operator== ( 00034 detail::tvec2<T> const & x, 00035 detail::tvec2<T> const & y); 00036 00039 template <typename T> 00040 bool operator== ( 00041 detail::tvec3<T> const & x, 00042 detail::tvec3<T> const & y); 00043 00046 template <typename T> 00047 bool operator== ( 00048 detail::tvec4<T> const & x, 00049 detail::tvec4<T> const & y); 00050 00053 template <typename T> 00054 bool operator!= ( 00055 detail::tvec2<T> const & x, 00056 detail::tvec2<T> const & y); 00057 00060 template <typename T> 00061 bool operator!= ( 00062 detail::tvec3<T> const & x, 00063 detail::tvec3<T> const & y); 00064 00067 template <typename T> 00068 bool operator!= ( 00069 detail::tvec4<T> const & x, 00070 detail::tvec4<T> const & y); 00071 */ 00072 }//namespace comparison 00073 }//namespace gtx 00074 }//namespace glm 00075 00076 #include "comparison.inl" 00077 00078 using namespace glm::gtx::comparison; 00079 00080 #endif//glm_gtx_comparison