1 // SMESH SMDS : implementaion of Salome mesh data structure
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
23 #pragma warning(disable:4786)
26 #include "SMDS_IteratorOfElements.hxx"
28 bool SMDS_IteratorOfElements::subMore()
30 if((t2Iterator.get()==NULL)||(!t2Iterator->more()))
32 if(t1Iterator->more())
34 t2Iterator=t1Iterator->next()->elementsIterator(myType);
42 const SMDS_MeshElement * SMDS_IteratorOfElements::subNext()
44 if((t2Iterator.get()==NULL)||(!t2Iterator->more()))
45 if(t1Iterator->more())
46 t2Iterator=t1Iterator->next()->elementsIterator(myType);
47 return t2Iterator->next();
50 /////////////////////////////////////////////////////////////////////////////
51 /// Create an iterator which look for elements of type type which are linked
52 /// to the element element. it is the iterator to get connectivity of element
53 //////////////////////////////////////////////////////////////////////////////
54 SMDS_IteratorOfElements::SMDS_IteratorOfElements(const SMDS_MeshElement * element,
55 SMDSAbs_ElementType type,
56 const SMDS_ElemIteratorPtr& it)
58 t2Iterator(SMDS_ElemIteratorPtr((SMDS_ElemIterator*)NULL)),
59 myType(type), myElement(element),
63 alreadyReturnedElements.insert(subNext());
64 itAlreadyReturned= alreadyReturnedElements.begin();
65 switch(myElement->GetType())
68 case SMDSAbs_Edge: myReverseIteration=true; break;
69 case SMDSAbs_Face: myReverseIteration=(type==SMDSAbs_Volume); break;
70 default: myReverseIteration=false;
74 bool SMDS_IteratorOfElements::more()
76 if(myProxyElement==NULL)
78 while(itAlreadyReturned!=alreadyReturnedElements.end())
80 myProxyElement=*itAlreadyReturned;
83 if(myReverseIteration)
85 SMDS_ElemIteratorPtr it=
86 myProxyElement->elementsIterator(myElement->GetType());
89 if(it->next()==myElement) return true;
100 const SMDS_MeshElement * SMDS_IteratorOfElements::next()
103 const SMDS_MeshElement *e=myProxyElement;