|
cgma
|
#include <FBStructs.hpp>
Public Member Functions | |
| bool | operator() (const VertexStuff *vfirst, const VertexStuff *vsecond) const |
Definition at line 161 of file FBStructs.hpp.
| bool vertstuffcompfn_less::operator() | ( | const VertexStuff * | vfirst, |
| const VertexStuff * | vsecond | ||
| ) | const [inline] |
Definition at line 164 of file FBStructs.hpp.
{
if ( vfirst->p_dir_coord < vsecond->p_dir_coord ) return true;
else if ( vfirst->p_dir_coord > vsecond->p_dir_coord ) return false;
else {
if ( vfirst->s_dir_coord < vsecond->s_dir_coord ) return true;
else return false;
}
}