mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-04 17:58:26 +05:00
a little optimize FindFace (std::vector<const SMDS_MeshNode *> nodes)
This commit is contained in:
parent
78364113e1
commit
0811f1f0ea
@ -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);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user