#include <Face.h>
Definition at line 160 of file Face.h.
std::size_t Nektar::NekMeshUtils::FaceHash::operator() |
( |
FaceSharedPtr const & |
p | ) |
const |
|
inline |
Definition at line 162 of file Face.h.
164 unsigned int nVert =
p->m_vertexList.size();
165 std::size_t seed = 0;
166 std::vector<unsigned int> ids(nVert);
168 for (
int i = 0; i < nVert; ++i)
170 ids[i] =
p->m_vertexList[i]->m_id;
173 std::sort(ids.begin(), ids.end());
174 boost::hash_range(seed, ids.begin(), ids.end());