func_vector_relational.hpp
Go to the documentation of this file.
00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 
00025 
00026 
00027 
00028 
00029 
00030 
00031 
00032 
00033 
00034 
00035 
00036 
00037 
00038 
00039 
00040 
00041 #ifndef GLM_CORE_func_vector_relational
00042 #define GLM_CORE_func_vector_relational GLM_VERSION
00043 
00044 #include "_detail.hpp"
00045 
00046 namespace glm
00047 {
00050 
00057     template <typename vecType> 
00058         typename vecType::bool_type lessThan(vecType const & x, vecType const & y);
00059 
00066         template <typename vecType> 
00067         typename vecType::bool_type lessThanEqual(vecType const & x, vecType const & y);
00068 
00075         template <typename vecType> 
00076         typename vecType::bool_type greaterThan(vecType const & x, vecType const & y);
00077 
00084         template <typename vecType> 
00085         typename vecType::bool_type greaterThanEqual(vecType const & x, vecType const & y);
00086 
00093         template <typename vecType> 
00094         typename vecType::bool_type equal(vecType const & x, vecType const & y);
00095 
00102         template <typename vecType> 
00103         typename vecType::bool_type notEqual(vecType const & x, vecType const & y);
00104 
00111         template <template <typename> class vecType> 
00112         bool any(vecType<bool> const & v);
00113 
00120         template <template <typename> class vecType> 
00121         bool all(vecType<bool> const & v);
00122 
00130         template <template <typename> class vecType> 
00131         vecType<bool> not_(vecType<bool> const & v);
00132 
00134 }//namespace glm
00135 
00136 #include "func_vector_relational.inl"
00137 
00138 #endif//GLM_CORE_func_vector_relational