Salome HOME
DCQ : Merge with Ecole_Ete_a6.
[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 //function : Print
32 //purpose  : 
33 //=======================================================================
34
35 void SMDS_VolumeOfFaces::Print(ostream & OS) const
36 {
37         OS << "volume <" << GetID() << "> : ";
38         int i;
39         for (i = 0; i < myFaces.size()-1; ++i) OS << myFaces[i] << ",";
40         OS << myFaces[i]<< ") " << endl;
41 }
42
43
44 int SMDS_VolumeOfFaces::NbFaces() const
45 {
46         return myFaces.size();
47 }
48
49 class SMDS_VolumeOfFaces_MyIterator:public SMDS_ElemIterator
50 {
51   const vector<const SMDS_MeshFace*>& mySet;
52   int index;
53  public:
54   SMDS_VolumeOfFaces_MyIterator(const vector<const SMDS_MeshFace*>& s):
55     mySet(s),index(0) {}
56
57   bool more()
58   {
59     return index<mySet.size();
60   }
61
62   const SMDS_MeshElement* next()
63   {
64     index++;
65     return mySet[index-1];
66   }
67 };
68
69 SMDS_ElemIteratorPtr SMDS_VolumeOfFaces::
70         elementsIterator(SMDSAbs_ElementType type) const
71 {
72   switch(type)
73   {
74   case SMDSAbs_Volume:
75     return SMDS_MeshElement::elementsIterator(SMDSAbs_Volume);
76   case SMDSAbs_Face:
77     return SMDS_ElemIteratorPtr(new SMDS_VolumeOfFaces_MyIterator(myFaces));
78   default:
79     return SMDS_ElemIteratorPtr
80       (new SMDS_IteratorOfElements
81        (this,type,SMDS_ElemIteratorPtr(new SMDS_VolumeOfFaces_MyIterator(myFaces))));
82   }
83 }
84
85 SMDS_VolumeOfFaces::SMDS_VolumeOfFaces(const SMDS_MeshFace * face1,
86                                        const SMDS_MeshFace * face2,
87                                        const SMDS_MeshFace * face3,
88                                        const SMDS_MeshFace * face4)
89 {
90         myFaces.resize(4);
91         myFaces[0]=face1;
92         myFaces[1]=face2;
93         myFaces[2]=face3;
94         myFaces[3]=face4;
95 }
96
97 SMDS_VolumeOfFaces::SMDS_VolumeOfFaces(const SMDS_MeshFace * face1,
98                                        const SMDS_MeshFace * face2,
99                                        const SMDS_MeshFace * face3,
100                                        const SMDS_MeshFace * face4,
101                                        const SMDS_MeshFace * face5)
102 {
103         myFaces.resize(5);
104         myFaces[0]=face1;
105         myFaces[1]=face2;
106         myFaces[2]=face3;
107         myFaces[3]=face4;
108         myFaces[4]=face5;
109 }
110
111 SMDS_VolumeOfFaces::SMDS_VolumeOfFaces(const SMDS_MeshFace * face1,
112                                        const SMDS_MeshFace * face2,
113                                        const SMDS_MeshFace * face3,
114                                        const SMDS_MeshFace * face4,
115                                        const SMDS_MeshFace * face5,
116                                        const SMDS_MeshFace * face6)
117 {
118         myFaces.resize(6);
119         myFaces[0]=face1;
120         myFaces[1]=face2;
121         myFaces[2]=face3;
122         myFaces[3]=face4;
123         myFaces[4]=face5;
124         myFaces[5]=face6;
125 }
126