Salome HOME
Integration of PAL/SALOME V2.1.0c from OCC
[modules/smesh.git] / src / SMDS / SMDS_VolumeOfFaces.cxx
1 //  SMESH SMDS : implementaion of Salome mesh data structure
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
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. 
10 // 
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. 
15 // 
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 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMDS_VolumeOfFaces.cxx
25 //  Author : Jean-Michel BOULCOURT
26 //  Module : SMESH
27
28 #include "SMDS_VolumeOfFaces.hxx"
29 #include "SMDS_IteratorOfElements.hxx"
30
31 using namespace std;
32
33 //=======================================================================
34 //function : Print
35 //purpose  : 
36 //=======================================================================
37
38 void SMDS_VolumeOfFaces::Print(ostream & OS) const
39 {
40         OS << "volume <" << GetID() << "> : ";
41         int i;
42         for (i = 0; i < myFaces.size()-1; ++i) OS << myFaces[i] << ",";
43         OS << myFaces[i]<< ") " << endl;
44 }
45
46
47 int SMDS_VolumeOfFaces::NbFaces() const
48 {
49         return myFaces.size();
50 }
51
52 class SMDS_VolumeOfFaces_MyIterator:public SMDS_ElemIterator
53 {
54   const vector<const SMDS_MeshFace*>& mySet;
55   int index;
56  public:
57   SMDS_VolumeOfFaces_MyIterator(const vector<const SMDS_MeshFace*>& s):
58     mySet(s),index(0) {}
59
60   bool more()
61   {
62     return index<mySet.size();
63   }
64
65   const SMDS_MeshElement* next()
66   {
67     index++;
68     return mySet[index-1];
69   }
70 };
71
72 SMDS_ElemIteratorPtr SMDS_VolumeOfFaces::
73         elementsIterator(SMDSAbs_ElementType type) const
74 {
75   switch(type)
76   {
77   case SMDSAbs_Volume:
78     return SMDS_MeshElement::elementsIterator(SMDSAbs_Volume);
79   case SMDSAbs_Face:
80     return SMDS_ElemIteratorPtr(new SMDS_VolumeOfFaces_MyIterator(myFaces));
81   default:
82     return SMDS_ElemIteratorPtr
83       (new SMDS_IteratorOfElements
84        (this,type,SMDS_ElemIteratorPtr(new SMDS_VolumeOfFaces_MyIterator(myFaces))));
85   }
86 }
87
88 SMDS_VolumeOfFaces::SMDS_VolumeOfFaces(const SMDS_MeshFace * face1,
89                                        const SMDS_MeshFace * face2,
90                                        const SMDS_MeshFace * face3,
91                                        const SMDS_MeshFace * face4)
92 {
93         myFaces.resize(4);
94         myFaces[0]=face1;
95         myFaces[1]=face2;
96         myFaces[2]=face3;
97         myFaces[3]=face4;
98 }
99
100 SMDS_VolumeOfFaces::SMDS_VolumeOfFaces(const SMDS_MeshFace * face1,
101                                        const SMDS_MeshFace * face2,
102                                        const SMDS_MeshFace * face3,
103                                        const SMDS_MeshFace * face4,
104                                        const SMDS_MeshFace * face5)
105 {
106         myFaces.resize(5);
107         myFaces[0]=face1;
108         myFaces[1]=face2;
109         myFaces[2]=face3;
110         myFaces[3]=face4;
111         myFaces[4]=face5;
112 }
113
114 SMDS_VolumeOfFaces::SMDS_VolumeOfFaces(const SMDS_MeshFace * face1,
115                                        const SMDS_MeshFace * face2,
116                                        const SMDS_MeshFace * face3,
117                                        const SMDS_MeshFace * face4,
118                                        const SMDS_MeshFace * face5,
119                                        const SMDS_MeshFace * face6)
120 {
121         myFaces.resize(6);
122         myFaces[0]=face1;
123         myFaces[1]=face2;
124         myFaces[2]=face3;
125         myFaces[3]=face4;
126         myFaces[4]=face5;
127         myFaces[5]=face6;
128 }
129