Salome HOME
Merge branch merge_1_2_d
[modules/smesh.git] / src / SMDS / SMDS_Tria3OfNodes.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_Tria3OfNodes.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_Tria3OfNodes::NbEdges() const
33 {
34         return 3;
35 }
36
37 int SMDS_Tria3OfNodes::NbFaces() const
38 {
39         return 3;
40 }
41
42 int SMDS_Tria3OfNodes::NbNodes() const
43 {
44         return 3;
45 }
46 //=======================================================================
47 //function : Print
48 //purpose  : 
49 //=======================================================================
50
51 void SMDS_Tria3OfNodes::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 SMDS_Iterator<const SMDS_MeshElement *> * SMDS_Tria3OfNodes::
60         elementsIterator(SMDSAbs_ElementType type) const
61 {
62         class MyIterator:public SMDS_Iterator<const SMDS_MeshElement*>
63         {
64                 const SMDS_MeshNode * const* mySet;
65                 int index;
66           public:
67                 MyIterator(const SMDS_MeshNode * const* s):mySet(s),index(0)
68                 {}
69
70                 bool more()
71                 {
72                         return index<3;
73                 }
74
75                 const SMDS_MeshElement* next()
76                 {
77                         index++;
78                         return mySet[index-1];
79                 }       
80         };
81
82         switch(type)
83         {
84         case SMDSAbs_Face:return SMDS_MeshElement::elementsIterator(SMDSAbs_Face);
85         case SMDSAbs_Node:return new MyIterator(myNodes);
86         case SMDSAbs_Edge:
87                 MESSAGE("Error : edge iterator for SMDS_FaceOfNodes not implemented");
88                 break;
89         default:return new SMDS_IteratorOfElements(this,type,new MyIterator(myNodes));
90         }
91 }
92
93 SMDS_Tria3OfNodes::SMDS_Tria3OfNodes(SMDS_MeshNode* node1, SMDS_MeshNode* node2,
94         SMDS_MeshNode* node3)
95 {
96         myNodes[0]=node1;
97         myNodes[1]=node2;
98         myNodes[2]=node3;
99 }
100
101