From 35c1f52506e4410fa41ff757e3b859d643dc99f7 Mon Sep 17 00:00:00 2001 From: eap Date: Tue, 1 Feb 2005 07:37:00 +0000 Subject: [PATCH] Do not try to compute sub-meshes if the main shape is already meshed --- src/SMESH/SMESH_Gen.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/SMESH/SMESH_Gen.cxx b/src/SMESH/SMESH_Gen.cxx index 01d864c6f..18df11ed3 100644 --- a/src/SMESH/SMESH_Gen.cxx +++ b/src/SMESH/SMESH_Gen.cxx @@ -166,6 +166,9 @@ bool SMESH_Gen::Compute(SMESH_Mesh & aMesh, const TopoDS_Shape & aShape) SMESH_subMesh *sm = aMesh.GetSubMesh(aShape); + if ( sm->GetComputeState() == SMESH_subMesh::COMPUTE_OK ) + return true; // already computed + // ----------------------------------------------------------------- // apply algos that do not require descretized boundaries, starting // from the most complex shapes -- 2.30.2