From: eap Date: Thu, 8 Sep 2016 17:53:37 +0000 (+0300) Subject: Regression of SALOME_TESTS/Grids/smesh/3D_mesh_Extrusion_01/B5 X-Git-Tag: V8_1_0rc1~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e576eeb10d8db1c979525eadf52bba91f273c91e;hp=560d5a794fdbeaddee2ff2716289b3b66c70ab5d;p=modules%2Fsmesh.git Regression of SALOME_TESTS/Grids/smesh/3D_mesh_Extrusion_01/B5 Use COMPUTE_SUBMESH event to compute more local sub-meshes under an all-dimensional sub-mesh. --- diff --git a/src/SMESH/SMESH_Gen.cxx b/src/SMESH/SMESH_Gen.cxx index ce860fc5e..9eadd2d60 100644 --- a/src/SMESH/SMESH_Gen.cxx +++ b/src/SMESH/SMESH_Gen.cxx @@ -331,7 +331,8 @@ bool SMESH_Gen::Compute(SMESH_Mesh & aMesh, SMESH_Hypothesis::Hypothesis_Status status; if ( subAlgo->CheckHypothesis( aMesh, aSubShape, status )) // mesh a lower smToCompute starting from vertices - Compute( aMesh, aSubShape, aShapeOnly, /*anUpward=*/true, aDim, aShapesId ); + Compute( aMesh, aSubShape, true, /*anUpward=*/true, aDim, aShapesId ); + // Compute( aMesh, aSubShape, aShapeOnly, /*anUpward=*/true, aDim, aShapesId ); } } }