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 #pragma once
00042
00043 #include "precision.hpp"
00044 #include "setup.hpp"
00045
00046 #if !((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER <= GLM_COMPILER_VC10)) // Workaround a Visual C++ bug
00047
00048 namespace glm
00049 {
00052
00059
00060
00061
00062
00069 template <typename T, precision P, template <typename, precision> class vecType>
00070 GLM_FUNC_DECL typename vecType<T, P>::bool_type lessThanEqual(vecType<T, P> const & x, vecType<T, P> const & y);
00071
00078 template <typename T, precision P, template <typename, precision> class vecType>
00079 GLM_FUNC_DECL typename vecType<T, P>::bool_type greaterThan(vecType<T, P> const & x, vecType<T, P> const & y);
00080
00087 template <typename T, precision P, template <typename, precision> class vecType>
00088 GLM_FUNC_DECL typename vecType<T, P>::bool_type greaterThanEqual(vecType<T, P> const & x, vecType<T, P> const & y);
00089
00096
00097
00098
00099
00106 template <typename T, precision P, template <typename, precision> class vecType>
00107 GLM_FUNC_DECL typename vecType<T, P>::bool_type notEqual(vecType<T, P> const & x, vecType<T, P> const & y);
00108
00115 template <precision P, template <typename, precision> class vecType>
00116 GLM_FUNC_DECL bool any(vecType<bool, P> const & v);
00117
00124 template <precision P, template <typename, precision> class vecType>
00125 GLM_FUNC_DECL bool all(vecType<bool, P> const & v);
00126
00134 template <precision P, template <typename, precision> class vecType>
00135 GLM_FUNC_DECL vecType<bool, P> not_(vecType<bool, P> const & v);
00136
00138 }
00139
00140 #endif
00141
00142 #include "func_vector_relational.inl"