Operations between components of a type. More...
Functions | |
template<typename genType > | |
genType::value_type | compAdd (genType const &v) |
template<typename genType > | |
genType::value_type | compMax (genType const &v) |
template<typename genType > | |
genType::value_type | compMin (genType const &v) |
template<typename genType > | |
genType::value_type | compMul (genType const &v) |
Operations between components of a type.
<glm/gtx/component_wise.hpp> need to be included to use these functionalities.
genType::value_type glm::gtx::component_wise::compAdd | ( | genType const & | v | ) |
Add all vector components together.
From GLM_GTX_component_wise extension.
genType::value_type glm::gtx::component_wise::compMax | ( | genType const & | v | ) |
Find the maximum value between single vector components.
From GLM_GTX_component_wise extension.
genType::value_type glm::gtx::component_wise::compMin | ( | genType const & | v | ) |
Find the minimum value between single vector components.
From GLM_GTX_component_wise extension.
genType::value_type glm::gtx::component_wise::compMul | ( | genType const & | v | ) |
Multiply all vector components together.
From GLM_GTX_component_wise extension.