mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-18 12:50:36 +05:00
- theElems.insert( face );
+ theElems.insert( theElems.end(), face );
This commit is contained in:
parent
1df3773296
commit
949330b987
@ -3115,7 +3115,7 @@ void SMESH_MeshEditor::Smooth (TIDSortedElemSet & theElems,
|
||||
SMDS_FaceIteratorPtr fIt = aMesh->facesIterator();
|
||||
while ( fIt->more() ) {
|
||||
const SMDS_MeshElement* face = fIt->next();
|
||||
theElems.insert( face );
|
||||
theElems.insert( theElems.end(), face );
|
||||
}
|
||||
}
|
||||
// get all face ids theElems are on
|
||||
|
Loading…
Reference in New Issue
Block a user