]> SALOME platform Git repositories - plugins/blsurfplugin.git/commitdiff
Salome HOME
Fix regression SALOME_TESTS/Grids/smesh/imps_10/L3
authoreap <eap@opencascade.com>
Fri, 13 May 2016 18:25:05 +0000 (21:25 +0300)
committereap <eap@opencascade.com>
Fri, 13 May 2016 18:25:05 +0000 (21:25 +0300)
src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx

index f46be51b41c4337489e1d44c960709fda9c0e2ef..1f64b0f556763723ef1859964f0b60e083d6988c 100644 (file)
@@ -1844,19 +1844,6 @@ namespace
       SMESH_MesherHelper tmpHelper( *this );
       tmpHelper.SetSubShape( _proxyFace );
 
-      // remove the faces made by the mesher
-      {
-        SMESHDS_Mesh* meshDS = helper.GetMeshDS();
-        SMESH_subMesh*    sm = origMesh.GetSubMesh( origFace );
-        if ( SMESHDS_SubMesh* smDS = sm->GetSubMeshDS() )
-        {
-          SMDS_ElemIteratorPtr eIt = smDS->GetElements();
-          while ( eIt->more() ) meshDS->RemoveFreeElement( eIt->next(), smDS );
-          SMDS_NodeIteratorPtr nIt = smDS->GetNodes();
-          while ( nIt->more() ) meshDS->RemoveFreeNode( nIt->next(), smDS );
-        }
-      }
-
       // iterate over tmp faces and copy them in origMesh
       const SMDS_MeshNode* nodes[27];
       const SMDS_MeshNode* nullNode = 0;