MOAB: Mesh Oriented datABase
(version 5.4.1)
|
Public Member Functions | |
bool | operator() (const HandleData &a, const HandleData &b) |
Private Types | |
typedef HandleData | first_argument_type |
typedef HandleData | second_argument_type |
typedef bool | result_type |
Definition at line 191 of file BVHTree.hpp.
typedef HandleData moab::BVHTree::HandleData_comparator::first_argument_type [private] |
Definition at line 194 of file BVHTree.hpp.
typedef bool moab::BVHTree::HandleData_comparator::result_type [private] |
Definition at line 196 of file BVHTree.hpp.
typedef HandleData moab::BVHTree::HandleData_comparator::second_argument_type [private] |
Definition at line 195 of file BVHTree.hpp.
bool moab::BVHTree::HandleData_comparator::operator() | ( | const HandleData & | a, |
const HandleData & | b | ||
) | [inline] |
Definition at line 199 of file BVHTree.hpp.
References moab::BVHTree::HandleData::myDim, and moab::BVHTree::HandleData::myHandle.
{
return a.myDim < b.myDim || ( a.myDim == b.myDim && a.myHandle < b.myHandle );
}