Salome HOME
DCQ : Merge with Ecole_Ete_a6.
[modules/smesh.git] / src / SMDS / SMDS_FaceOfNodes.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 #include "SMDS_FaceOfNodes.hxx"
23 #include "SMDS_IteratorOfElements.hxx"
24 #include "SMDS_MeshNode.hxx"
25 #include "utilities.h"
26
27 //=======================================================================
28 //function : NbEdges
29 //purpose  : 
30 //=======================================================================
31
32 int SMDS_FaceOfNodes::NbEdges() const
33 {
34         return NbNodes();
35 }
36
37 int SMDS_FaceOfNodes::NbFaces() const
38 {
39         return 1;
40 }
41
42 int SMDS_FaceOfNodes::NbNodes() const
43 {
44         return myNodes.size();
45 }
46 //=======================================================================
47 //function : Print
48 //purpose  : 
49 //=======================================================================
50
51 void SMDS_FaceOfNodes::Print(ostream & OS) const
52 {
53         OS << "face <" << GetID() << " > : ";
54         int i;
55         for (i = 0; i < NbNodes() - 1; i++) OS << myNodes[i] << ",";
56         OS << myNodes[i] << ") " << endl;
57 }
58
59 class SMDS_FaceOfNodes_MyIterator:public SMDS_ElemIterator
60 {
61   const vector<const SMDS_MeshNode*>& mySet;
62   int index;
63  public:
64   SMDS_FaceOfNodes_MyIterator(const vector<const SMDS_MeshNode*>& s):
65     mySet(s),index(0) {}
66
67   bool more()
68   {
69     return index<mySet.size();
70   }
71
72   const SMDS_MeshElement* next()
73   {
74     index++;
75     return mySet[index-1];
76   }     
77 };
78 SMDS_ElemIteratorPtr SMDS_FaceOfNodes::
79         elementsIterator(SMDSAbs_ElementType type) const
80 {
81   switch(type)
82   {
83   case SMDSAbs_Face:
84     return SMDS_MeshElement::elementsIterator(SMDSAbs_Face);
85   case SMDSAbs_Node:
86     return SMDS_ElemIteratorPtr(new SMDS_FaceOfNodes_MyIterator(myNodes));
87   case SMDSAbs_Edge:
88     MESSAGE("Error : edge iterator for SMDS_FaceOfNodes not implemented");
89     break;
90   default:
91     return SMDS_ElemIteratorPtr
92       (new SMDS_IteratorOfElements
93        (this,type,SMDS_ElemIteratorPtr(new SMDS_FaceOfNodes_MyIterator(myNodes))));
94   }
95 }
96
97 SMDS_FaceOfNodes::SMDS_FaceOfNodes(const SMDS_MeshNode* node1,
98                                    const SMDS_MeshNode* node2,
99                                    const SMDS_MeshNode* node3)
100 {
101         myNodes.resize(3);
102         myNodes[0]=node1;
103         myNodes[1]=node2;
104         myNodes[2]=node3;
105 }
106
107 SMDS_FaceOfNodes::SMDS_FaceOfNodes(const SMDS_MeshNode* node1,
108                                    const SMDS_MeshNode* node2,
109                                    const SMDS_MeshNode* node3,
110                                    const SMDS_MeshNode* node4)
111 {
112         myNodes.resize(4);
113         myNodes[0]=node1;
114         myNodes[1]=node2;
115         myNodes[2]=node3;
116         myNodes[3]=node4;       
117 }
118
119 /*bool operator<(const SMDS_FaceOfNodes& f1, const SMDS_FaceOfNodes& f2)
120 {
121         set<SMDS_MeshNode> set1,set2;
122         SMDS_ElemIteratorPtr it;
123         const SMDS_MeshNode * n;
124
125         it=f1.nodesIterator();
126
127         while(it->more())
128         {
129                 n=static_cast<const SMDS_MeshNode *>(it->next());
130                 set1.insert(*n);
131         }
132
133         delete it;
134         it=f2.nodesIterator();
135         
136         while(it->more())
137         {       
138                 n=static_cast<const SMDS_MeshNode *>(it->next());
139                 set2.insert(*n);
140         }
141
142         delete it;
143         return set1<set2;       
144
145 }*/
146