X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHDS%2FSMESHDS_GroupOnGeom.cxx;h=0c0460b2f3a9cac1a57e3f7a61d65d45cc3e75ed;hp=65a39a7bc2ff79257d8a7f5214fc4e3d7f7e1021;hb=refs%2Ftags%2FV9_7_0a1;hpb=a17b36970bc61da1d664453c615754997c925b18 diff --git a/src/SMESHDS/SMESHDS_GroupOnGeom.cxx b/src/SMESHDS/SMESHDS_GroupOnGeom.cxx index 65a39a7bc..0c0460b2f 100644 --- a/src/SMESHDS/SMESHDS_GroupOnGeom.cxx +++ b/src/SMESHDS/SMESHDS_GroupOnGeom.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -66,13 +66,17 @@ class MyIterator: public SMDS_ElemIterator MyIterator(SMDSAbs_ElementType type, const SMESHDS_SubMesh* subMesh) : myType(type), myElem(0) { - if ( subMesh ) { - if ( myType == SMDSAbs_Node ) + if ( subMesh ) + { + if ( myType == SMDSAbs_Node || + myType == SMDSAbs_0DElement || + myType == SMDSAbs_Ball ) myNodeIt = subMesh->GetNodes(); - else { + else myElemIt = subMesh->GetElements(); + + if ( myType != SMDSAbs_Node ) next(); - } } } bool more() @@ -85,15 +89,30 @@ class MyIterator: public SMDS_ElemIterator { if ( myType == SMDSAbs_Node && myNodeIt ) return myNodeIt->next(); + const SMDS_MeshElement* res = myElem; myElem = 0; - while ( myElemIt && myElemIt->more() ) { - myElem = myElemIt->next(); - if ( myElem && myElem->GetType() == myType ) - break; - else - myElem = 0; - } + + if ( myElemIt ) + while ( myElemIt->more() ) { + myElem = myElemIt->next(); + if ( myElem && myElem->GetType() == myType ) + break; + else + myElem = 0; + } + + if ( !myElem && myNodeIt ) // look for a 0D element + while ( myNodeIt->more() ) { + const SMDS_MeshNode* n = myNodeIt->next(); + if (( myElemIt = n->GetInverseElementIterator( myType )) && + ( myElemIt->more() )) + { + myElem = myElemIt->next(); + break; + } + } + return res; } }; @@ -113,7 +132,7 @@ SMDS_ElemIteratorPtr SMESHDS_GroupOnGeom::GetElements() const //purpose : //======================================================================= -bool SMESHDS_GroupOnGeom::Contains (const int theID) +bool SMESHDS_GroupOnGeom::Contains (const smIdType theID) { return mySubMesh->Contains( findInMesh( theID )); } @@ -125,6 +144,10 @@ bool SMESHDS_GroupOnGeom::Contains (const int theID) bool SMESHDS_GroupOnGeom::Contains (const SMDS_MeshElement* elem) { + if ( GetType() == SMDSAbs_0DElement || + GetType() == SMDSAbs_Ball ) + return elem ? mySubMesh->Contains( elem->GetNode(0) ) : false; + return mySubMesh->Contains( elem ); }