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
24 // File : SMDS_VolumeOfFaces.cxx
25 // Author : Jean-Michel BOULCOURT
29 #pragma warning(disable:4786)
32 #include "SMDS_VolumeOfFaces.hxx"
33 #include "SMDS_IteratorOfElements.hxx"
37 //=======================================================================
40 //=======================================================================
42 void SMDS_VolumeOfFaces::Print(ostream & OS) const
44 OS << "volume <" << GetID() << "> : ";
46 for (i = 0; i < NbFaces()-1; ++i) OS << myFaces[i] << ",";
47 OS << myFaces[i]<< ") " << endl;
51 int SMDS_VolumeOfFaces::NbFaces() const
56 class SMDS_VolumeOfFaces_MyIterator:public SMDS_ElemIterator
58 const SMDS_MeshFace* const *mySet;
62 SMDS_VolumeOfFaces_MyIterator(const SMDS_MeshFace* const *s, int l):
63 mySet(s),myLength(l),index(0) {}
67 return index<myLength;
70 const SMDS_MeshElement* next()
73 return mySet[index-1];
77 SMDS_ElemIteratorPtr SMDS_VolumeOfFaces::
78 elementsIterator(SMDSAbs_ElementType type) const
83 return SMDS_MeshElement::elementsIterator(SMDSAbs_Volume);
85 return SMDS_ElemIteratorPtr(new SMDS_VolumeOfFaces_MyIterator(myFaces,myNbFaces));
87 return SMDS_ElemIteratorPtr
88 (new SMDS_IteratorOfElements
89 (this,type,SMDS_ElemIteratorPtr
90 (new SMDS_VolumeOfFaces_MyIterator(myFaces,myNbFaces))));
94 SMDS_VolumeOfFaces::SMDS_VolumeOfFaces(const SMDS_MeshFace * face1,
95 const SMDS_MeshFace * face2,
96 const SMDS_MeshFace * face3,
97 const SMDS_MeshFace * face4)
108 SMDS_VolumeOfFaces::SMDS_VolumeOfFaces(const SMDS_MeshFace * face1,
109 const SMDS_MeshFace * face2,
110 const SMDS_MeshFace * face3,
111 const SMDS_MeshFace * face4,
112 const SMDS_MeshFace * face5)
123 SMDS_VolumeOfFaces::SMDS_VolumeOfFaces(const SMDS_MeshFace * face1,
124 const SMDS_MeshFace * face2,
125 const SMDS_MeshFace * face3,
126 const SMDS_MeshFace * face4,
127 const SMDS_MeshFace * face5,
128 const SMDS_MeshFace * face6)