![]() |
VisionWorks Toolkit ReferenceDecember 18, 2015 | 1.2 Release |
Contains API for Range construction.
Functions | |
template<typename T > | |
Range< T > | all () |
Creates a range that includes all points. More... | |
template<typename T > | |
Range< T > | atLeast (T x) |
Creates a range that includes the values that are greater than or equal to the particular number (values >= x). More... | |
template<typename T > | |
Range< T > | atMost (T x) |
Creates a range that includes the values that are less than or equal to the particular number (values <= x). More... | |
template<typename T > | |
Range< T > | lessThan (T x) |
Creates a range that includes the values that are less than the particular number (values < x). More... | |
template<typename T > | |
Range< T > | moreThan (T x) |
Creates a range that includes the values that are greater than the particular number (values > x). More... | |