OpenMesh
|
Base class for all smart range types. More...
#include <OpenMesh/Core/Mesh/SmartRange.hh>
Public Types | |
using | Handle = HandleT |
using | SmartRange = SmartRangeT< RangeT, HandleT > |
using | Range = RangeT |
Public Member Functions | |
template<typename Functor > | |
auto | sum (Functor &&f) -> typename std::decay< decltype(f(std::declval< HandleT >()))>::type |
Computes the sum of elements. More... | |
template<typename Functor > | |
auto | avg (Functor &&f) -> typename std::decay< decltype(f(std::declval< HandleT >()))>::type |
Computes the average of elements. More... | |
template<typename Functor , typename WeightFunctor > | |
auto | avg (Functor &&f, WeightFunctor &&w) -> typename std::decay< decltype((1.0/(w(std::declval< HandleT >())+w(std::declval< HandleT >()))) *f(std::declval< HandleT >()))>::type |
Computes the weighted average of elements. More... | |
template<typename Functor > | |
auto | any_of (Functor &&f) -> bool |
Check if any element fulfils condition. More... | |
template<typename Functor > | |
auto | all_of (Functor &&f) -> bool |
Check if all elements fulfil condition. More... | |
template<int n, typename Functor = Identity> | |
auto | to_array (Functor &&f={}) -> std::array< typename std::decay< decltype(f(std::declval< HandleT >()))>::type, n > |
Convert range to array. More... | |
template<typename Functor = Identity> | |
auto | to_vector (Functor &&f={}) -> std::vector< typename std::decay< decltype(f(std::declval< HandleT >()))>::type > |
Convert range to vector. More... | |
template<typename Functor = Identity> | |
auto | to_set (Functor &&f={}) -> std::set< typename std::decay< decltype(f(std::declval< HandleT >()))>::type > |
Convert range to set. More... | |
template<typename Functor > | |
auto | first (Functor &&f={}) -> HandleT |
Get the first element that fulfills a condition. More... | |
template<typename Functor > | |
auto | min (Functor &&f) -> typename std::decay< decltype(f(std::declval< HandleT >()))>::type |
Compute minimum. More... | |
template<typename Functor > | |
auto | argmin (Functor &&f) -> HandleT |
Compute minimal element. More... | |
template<typename Functor > | |
auto | max (Functor &&f) -> typename std::decay< decltype(f(std::declval< HandleT >()))>::type |
Compute maximum. More... | |
template<typename Functor > | |
auto | argmax (Functor &&f) -> HandleT |
Compute maximal element. More... | |
template<typename Functor > | |
auto | minmax (Functor &&f) -> std::pair< typename std::decay< decltype(f(std::declval< HandleT >()))>::type, typename std::decay< decltype(f(std::declval< HandleT >()))>::type > |
Computes minimum and maximum. More... | |
template<typename Functor > | |
auto | count_if (Functor &&f) -> int |
Compute number of elements that satisfy a given predicate. More... | |
template<typename Functor > | |
auto | for_each (Functor &&f) -> void |
Apply a functor to each element. More... | |
template<typename Functor > | |
auto | filtered (Functor &&f) -> FilteredSmartRangeT< SmartRange, Handle, Functor > |
Only iterate over a subset of elements. More... | |
Base class for all smart range types.
|
inline |
Check if all elements fulfil condition.
Checks if functor f
returns true for all of the elements in the range. Returns true if that is the case, false otherwise.
f | Functor that is evaluated for all elements. |
|
inline |
Check if any element fulfils condition.
Checks if functor f
returns true for any of the elements in the range. Returns true if that is the case, false otherwise.
f | Functor that is evaluated for all elements. |
|
inline |
Compute maximal element.
Computes the element that maximizes f
.
f | Functor that is applied to all elements before comparing. |
|
inline |
Compute minimal element.
Computes the element that minimizes f
.
f | Functor that is applied to all elements before comparing. |
|
inline |
Computes the average of elements.
Computes the average of all elements in the range after applying the functor f
.
f | Functor that is applied to all elements before computing the average. |
|
inline |
Computes the weighted average of elements.
Computes the weighted average of all elements in the range after applying the functor f
.
f | Functor that is applied to all elements before computing the average. |
w | Functor returning element weight. |
|
inline |
Compute number of elements that satisfy a given predicate.
Computes the numer of elements which satisfy functor f
.
f | Predicate that elements have to satisfy in order to be counted. |
|
inline |
Only iterate over a subset of elements.
Returns a smart range which skips all elements that do not satisfy functor f
f | Functor that needs to be evaluated to true if the element should not be skipped. |
|
inline |
Get the first element that fulfills a condition.
Finds the first element of the range for which the functor f
evaluates to true. Returns an invalid handle if none evaluates to true
f | Functor that is applied to all elements before putting them into the set. If no functor is provided the set will contain the handles. |
|
inline |
Apply a functor to each element.
Calls functor f
with each element as parameter
f | Functor that is called for each element. |
|
inline |
Compute maximum.
Computes the maximum of all objects returned by functor f
.
f | Functor that is applied to all elements before computing maximum. |
|
inline |
Compute minimum.
Computes the minimum of all objects returned by functor f
.
f | Functor that is applied to all elements before computing minimum. |
|
inline |
Computes minimum and maximum.
Computes the minimum and maximum of all objects returned by functor f
. Result is returned as std::pair containing minimum as first and maximum as second element.
f | Functor that is applied to all elements before computing maximum. |
|
inline |
Computes the sum of elements.
Computes the sum of all elements in the range after applying the functor f
.
f | Functor that is applied to all elements before computing the sum |
|
inline |
Convert range to array.
Converts the range of elements into an array of objects returned by functor f
. The size of the array needs to be provided by the user. If the size is larger than the number of elements in the range, the remaining entries of the array will be uninitialized.
f | Functor that is applied to all elements before putting them into the array. If no functor is provided the array will contain the handles. |
|
inline |
Convert range to set.
Converts the range of elements into a set of objects returned by functor f
.
f | Functor that is applied to all elements before putting them into the set. If no functor is provided the set will contain the handles. |
|
inline |
Convert range to vector.
Converts the range of elements into a vector of objects returned by functor f
.
f | Functor that is applied to all elements before putting them into the vector. If no functor is provided the vector will contain the handles. |