22 #include "detail/qualifier.hpp" 23 #include "detail/setup.hpp" 37 template<length_t L,
typename T, qualifier Q>
38 GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q>
lessThan(vec<L, T, Q>
const& x, vec<L, T, Q>
const& y);
47 template<length_t L,
typename T, qualifier Q>
48 GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q>
lessThanEqual(vec<L, T, Q>
const& x, vec<L, T, Q>
const& y);
57 template<length_t L,
typename T, qualifier Q>
58 GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q>
greaterThan(vec<L, T, Q>
const& x, vec<L, T, Q>
const& y);
67 template<length_t L,
typename T, qualifier Q>
68 GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q>
greaterThanEqual(vec<L, T, Q>
const& x, vec<L, T, Q>
const& y);
77 template<length_t L,
typename T, qualifier Q>
78 GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q>
equal(vec<L, T, Q>
const& x, vec<L, T, Q>
const& y);
87 template<length_t L,
typename T, qualifier Q>
88 GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q>
notEqual(vec<L, T, Q>
const& x, vec<L, T, Q>
const& y);
96 template<length_t L, qualifier Q>
97 GLM_FUNC_DECL GLM_CONSTEXPR
bool any(vec<L, bool, Q>
const& v);
105 template<length_t L, qualifier Q>
106 GLM_FUNC_DECL GLM_CONSTEXPR
bool all(vec<L, bool, Q>
const& v);
115 template<length_t L, qualifier Q>
116 GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q>
not_(vec<L, bool, Q>
const& v);
121 #include "detail/func_vector_relational.inl" GLM_FUNC_DECL GLM_CONSTEXPR bool all(vec< L, bool, Q > const &v)
Returns true if all components of x are true.
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the component-wise comparison of result x != y.
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the component-wise comparison of result x == y.
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > lessThan(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the component-wise comparison result of x < y.
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > not_(vec< L, bool, Q > const &v)
Returns the component-wise logical complement of x.
GLM_FUNC_DECL GLM_CONSTEXPR bool any(vec< L, bool, Q > const &v)
Returns true if any component of x is true.
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > greaterThanEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the component-wise comparison of result x >= y.
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > lessThanEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the component-wise comparison of result x <= y.
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > greaterThan(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the component-wise comparison of result x > y.