From: eap Date: Thu, 20 Nov 2008 08:47:21 +0000 (+0000) Subject: Avoid meshing submeshes with global algos under submeshes that are to X-Git-Tag: V4_1_4rc2~14 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=c431d7d49ed0bf4d7d6f28591bc14b572b445253;p=modules%2Fsmesh.git Avoid meshing submeshes with global algos under submeshes that are to be meshed with all-dim algos like NETGEN 1D-2D --- diff --git a/src/SMESH/SMESH_Gen.cxx b/src/SMESH/SMESH_Gen.cxx index e8d57f86c..52c2f9b09 100644 --- a/src/SMESH/SMESH_Gen.cxx +++ b/src/SMESH/SMESH_Gen.cxx @@ -241,10 +241,10 @@ bool SMESH_Gen::Compute(SMESH_Mesh & aMesh, if ( sm->GetComputeState() == SMESH_subMesh::READY_TO_COMPUTE) sm->ComputeStateEngine( SMESH_subMesh::COMPUTE ); - // ----------------------------------------------- - // mesh the rest subshapes starting from vertices - // ----------------------------------------------- - ret = Compute( aMesh, aShape, /*anUpward=*/true ); + // ------------------------ + // mesh the rest subshapes + // ------------------------ + ret = Compute( aMesh, aShape ); } MESSAGE( "VSR - SMESH_Gen::Compute() finished, OK = " << ret);