Relational and equality operators (<, <=, >, >=, ==, !=) are defined to operate on scalars and produce scalar Boolean results.
More...
|
| template<typename vecType > |
| vecType::bool_type | glm::lessThan (vecType const &x, vecType const &y) |
| | Returns the component-wise comparison result of x < y. More...
|
| |
| template<typename vecType > |
| vecType::bool_type | glm::lessThanEqual (vecType const &x, vecType const &y) |
| | Returns the component-wise comparison of result x <= y. More...
|
| |
| template<typename vecType > |
| vecType::bool_type | glm::greaterThan (vecType const &x, vecType const &y) |
| | Returns the component-wise comparison of result x > y. More...
|
| |
| template<typename vecType > |
| vecType::bool_type | glm::greaterThanEqual (vecType const &x, vecType const &y) |
| | Returns the component-wise comparison of result x >= y. More...
|
| |
| template<typename vecType > |
| vecType::bool_type | glm::equal (vecType const &x, vecType const &y) |
| | Returns the component-wise comparison of result x == y. More...
|
| |
| template<typename vecType > |
| vecType::bool_type | glm::notEqual (vecType const &x, vecType const &y) |
| | Returns the component-wise comparison of result x != y. More...
|
| |
| template<template< typename > class vecType> |
| bool | glm::any (vecType< bool > const &v) |
| | Returns true if any component of x is true. More...
|
| |
| template<template< typename > class vecType> |
| bool | glm::all (vecType< bool > const &v) |
| | Returns true if all components of x are true. More...
|
| |
| template<template< typename > class vecType> |
| vecType< bool > | glm::not_ (vecType< bool > const &v) |
| | Returns the component-wise logical complement of x. More...
|
| |
Relational and equality operators (<, <=, >, >=, ==, !=) are defined to operate on scalars and produce scalar Boolean results.
For vector results, use the following built-in functions.
In all cases, the sizes of all the input and return vectors for any particular call must match.
§ all()
template<template< typename > class vecType>
| bool glm::all |
( |
vecType< bool > const & |
v | ) |
|
§ any()
template<template< typename > class vecType>
| bool glm::any |
( |
vecType< bool > const & |
v | ) |
|
§ equal()
template<typename vecType >
| vecType::bool_type glm::equal |
( |
vecType const & |
x, |
|
|
vecType const & |
y |
|
) |
| |
§ greaterThan()
template<typename vecType >
| vecType::bool_type glm::greaterThan |
( |
vecType const & |
x, |
|
|
vecType const & |
y |
|
) |
| |
§ greaterThanEqual()
template<typename vecType >
| vecType::bool_type glm::greaterThanEqual |
( |
vecType const & |
x, |
|
|
vecType const & |
y |
|
) |
| |
§ lessThan()
template<typename vecType >
| vecType::bool_type glm::lessThan |
( |
vecType const & |
x, |
|
|
vecType const & |
y |
|
) |
| |
§ lessThanEqual()
template<typename vecType >
| vecType::bool_type glm::lessThanEqual |
( |
vecType const & |
x, |
|
|
vecType const & |
y |
|
) |
| |
§ not_()
template<template< typename > class vecType>
| vecType<bool> glm::not_ |
( |
vecType< bool > const & |
v | ) |
|
§ notEqual()
template<typename vecType >
| vecType::bool_type glm::notEqual |
( |
vecType const & |
x, |
|
|
vecType const & |
y |
|
) |
| |