libigl v2.5.0
|
A row of things that can be sorted against other rows. More...
#include <SortableRow.h>
Public Member Functions | |
SortableRow () | |
Default constructor. | |
SortableRow (const T &data) | |
Constructor. | |
bool | operator< (const SortableRow &that) const |
Less than comparison. | |
bool | operator== (const SortableRow &that) const |
Equality comparison. | |
bool | operator!= (const SortableRow &that) const |
Inequality comparison. | |
Public Attributes | |
T | data |
The data. | |
A row of things that can be sorted against other rows.
T | should be a vector/matrix/array that implements .size(), and operator(int i) |
|
inline |
Default constructor.
|
inline |
Constructor.
[in] | data | the data |
|
inline |
Less than comparison.
[in] | that | the other row |
|
inline |
Equality comparison.
[in] | that | the other row |
|
inline |
Inequality comparison.
[in] | that | the other row |
T igl::SortableRow< T >::data |
The data.