From: eap Date: Wed, 18 Jan 2012 12:01:40 +0000 (+0000) Subject: 0021472: EDF 2080 SMESH: Projection1D2D on a Voronoi structure fails X-Git-Tag: V6_5_0a1~199 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=4f5cf5faab3fd9b011e5a7abefaf2eded0a0fc7e;hp=025e264849d3d5f204628b9ce435f483aa7b6b35;p=modules%2Fsmesh.git 0021472: EDF 2080 SMESH: Projection1D2D on a Voronoi structure fails fix merging new and old nodes in case if not all edges are meshed --- diff --git a/src/StdMeshers/StdMeshers_Projection_2D.cxx b/src/StdMeshers/StdMeshers_Projection_2D.cxx index a021d9be5..6e04b6f22 100644 --- a/src/StdMeshers/StdMeshers_Projection_2D.cxx +++ b/src/StdMeshers/StdMeshers_Projection_2D.cxx @@ -196,8 +196,7 @@ namespace { // only by faces created by mapper //if ( is1DComputed ) { - SMDS_ElemIteratorPtr invEdge = node->GetInverseElementIterator(SMDSAbs_Edge); - bool isOld = invEdge->more(); + bool isOld = node->NbInverseElements(SMDSAbs_Edge) > 0; return isOld; } // else @@ -224,7 +223,7 @@ namespace { void Release() { sm = 0; } // mesh will not be removed static void Clean( SMESH_subMesh* sm, bool withSub=true ) { - if ( !sm ) return; + if ( !sm || !sm->GetSubMeshDS() ) return; // PAL16567, 18920. Remove face nodes as well // switch ( sm->GetSubShape().ShapeType() ) { // case TopAbs_VERTEX: @@ -936,9 +935,10 @@ bool StdMeshers_Projection_2D::Compute(SMESH_Mesh& theMesh, const TopoDS_Shape& { SMESH_subMesh* sm = smIt->next(); SMESHDS_SubMesh* smDS = sm->GetSubMeshDS(); - - if ( !is1DComputed && sm->GetSubShape().ShapeType() == TopAbs_EDGE ) + if ( !sm->IsMeshComputed() ) break; + //if ( !is1DComputed && sm->GetSubShape().ShapeType() == TopAbs_EDGE ) + //break; // Sort new and old nodes of a submesh separately @@ -996,8 +996,7 @@ bool StdMeshers_Projection_2D::Compute(SMESH_Mesh& theMesh, const TopoDS_Shape& continue; if ( u2nodesMaps[ OLD_NODES ].size() == 0 && - sm->GetSubShape().ShapeType() == TopAbs_VERTEX && - !is1DComputed ) + sm->GetSubShape().ShapeType() == TopAbs_VERTEX ) // old nodes are optional on vertices in the case of 1D-2D projection continue;