Salome HOME
PR: test of use of vtk structures in SMDS, first part: only nodes, tested only with...
[modules/smesh.git] / src / SMDS / SMDS_Mesh0DElement.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  SMESH SMDS : implementaion of Salome mesh data structure
23 //  File   : SMDS_Mesh0DElement.cxx
24 //  Author : Jean-Michel BOULCOURT
25 //  Module : SMESH
26
27 #ifdef _MSC_VER
28 #pragma warning(disable:4786)
29 #endif
30
31 #include "SMDS_Mesh0DElement.hxx"
32 #include "SMDS_IteratorOfElements.hxx"
33 #include "SMDS_MeshNode.hxx"
34 #include "utilities.h"
35
36 using namespace std;
37
38 //=======================================================================
39 //function : SMDS_Mesh0DElement
40 //purpose  :
41 //=======================================================================
42 SMDS_Mesh0DElement::SMDS_Mesh0DElement (const SMDS_MeshNode * node)
43 {
44     MESSAGE("SMDS_Mesh0DElement " << GetID());
45   myNode = node;
46 }
47
48 //=======================================================================
49 //function : Print
50 //purpose  :
51 //=======================================================================
52 void SMDS_Mesh0DElement::Print (ostream & OS) const
53 {
54   OS << "0D Element <" << GetID() << "> : (" << myNode << ") " << endl;
55 }
56
57 //=======================================================================
58 //function : NbNodes
59 //purpose  :
60 //=======================================================================
61 int SMDS_Mesh0DElement::NbNodes() const
62 {
63   return 1;
64 }
65
66 //=======================================================================
67 //function : NbEdges
68 //purpose  :
69 //=======================================================================
70 int SMDS_Mesh0DElement::NbEdges() const
71 {
72   return 0;
73 }
74
75 //=======================================================================
76 //function : GetType
77 //purpose  :
78 //=======================================================================
79 SMDSAbs_ElementType SMDS_Mesh0DElement::GetType() const
80 {
81   return SMDSAbs_0DElement;
82 }
83
84 //=======================================================================
85 //function : elementsIterator
86 //purpose  :
87 //=======================================================================
88 class SMDS_Mesh0DElement_MyNodeIterator: public SMDS_ElemIterator
89 {
90   const SMDS_MeshNode * myNode;
91   int myIndex;
92  public:
93   SMDS_Mesh0DElement_MyNodeIterator(const SMDS_MeshNode * node):
94     myNode(node),myIndex(0) {}
95
96   bool more()
97   {
98     return myIndex < 1;
99   }
100
101   const SMDS_MeshElement* next()
102   {
103     myIndex++;
104     if (myIndex == 1)
105       return myNode;
106     return NULL;
107   }
108 };
109
110 SMDS_ElemIteratorPtr SMDS_Mesh0DElement::elementsIterator (SMDSAbs_ElementType type) const
111 {
112   switch(type)
113   {
114   case SMDSAbs_0DElement:
115     return SMDS_MeshElement::elementsIterator(SMDSAbs_0DElement);
116   case SMDSAbs_Node:
117     return SMDS_ElemIteratorPtr(new SMDS_Mesh0DElement_MyNodeIterator(myNode));
118   default:
119     return SMDS_ElemIteratorPtr
120       (new SMDS_IteratorOfElements
121        (this,type, SMDS_ElemIteratorPtr(new SMDS_Mesh0DElement_MyNodeIterator(myNode))));
122   }
123 }
124
125 //=======================================================================
126 //function : operator<
127 //purpose  :
128 //=======================================================================
129 bool operator< (const SMDS_Mesh0DElement & e1, const SMDS_Mesh0DElement & e2)
130 {
131   int id1 = e1.myNode->GetID();
132   int id2 = e2.myNode->GetID();
133
134   return (id1 < id2);
135 }
136
137 /*!
138  * \brief Return node by its index
139  * \param ind - node index
140  * \retval const SMDS_MeshNode* - the node
141  */
142 const SMDS_MeshNode* SMDS_Mesh0DElement::GetNode(const int ind) const
143 {
144   if (ind == 0)
145     return myNode;
146   return NULL;
147 }
148
149 //=======================================================================
150 //function : ChangeNode
151 //purpose  :
152 //=======================================================================
153 bool SMDS_Mesh0DElement::ChangeNode (const SMDS_MeshNode * node)
154 {
155   myNode = node;
156   return true;
157 }