a little optimize FindFace (std::vector<const SMDS_MeshNode *> nodes)

This commit is contained in:
eap 2010-03-09 08:17:43 +00:00
parent 78364113e1
commit 0811f1f0ea

View File

@ -1782,15 +1782,10 @@ const SMDS_MeshFace* SMDS_Mesh::FindFace (std::vector<const SMDS_MeshNode *> nod
while (itF->more()) { while (itF->more()) {
const SMDS_MeshElement* f = itF->next(); const SMDS_MeshElement* f = itF->next();
if ( f->NbNodes() == nodes.size() ) { if ( f->NbNodes() == nodes.size() ) {
SMDS_ElemIteratorPtr it2 = f->nodesIterator(); for ( int i = 1; i < nodes.size(); ++ i )
while(it2->more()) { if ( f->GetNodeIndex( nodes[ i ]) < 0 )
if ( find( nodes.begin(), nodes.end(), it2->next() ) == nodes.end() ) { return NULL;
f = 0; return static_cast<const SMDS_MeshFace *> (f);
break;
}
}
if ( f )
return static_cast<const SMDS_MeshFace *> (f);
} }
} }
} }