Salome HOME
PR: mesh and visu hexa no copy
[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 vtkIdType SMDS_Mesh0DElement::GetVtkType() const
85 {
86   return VTK_VERTEX;
87 }
88
89 //=======================================================================
90 //function : elementsIterator
91 //purpose  :
92 //=======================================================================
93 class SMDS_Mesh0DElement_MyNodeIterator: public SMDS_ElemIterator
94 {
95   const SMDS_MeshNode * myNode;
96   int myIndex;
97  public:
98   SMDS_Mesh0DElement_MyNodeIterator(const SMDS_MeshNode * node):
99     myNode(node),myIndex(0) {}
100
101   bool more()
102   {
103     return myIndex < 1;
104   }
105
106   const SMDS_MeshElement* next()
107   {
108     myIndex++;
109     if (myIndex == 1)
110       return myNode;
111     return NULL;
112   }
113 };
114
115 SMDS_ElemIteratorPtr SMDS_Mesh0DElement::elementsIterator (SMDSAbs_ElementType type) const
116 {
117   switch(type)
118   {
119   case SMDSAbs_0DElement:
120     return SMDS_MeshElement::elementsIterator(SMDSAbs_0DElement);
121   case SMDSAbs_Node:
122     return SMDS_ElemIteratorPtr(new SMDS_Mesh0DElement_MyNodeIterator(myNode));
123   default:
124     return SMDS_ElemIteratorPtr
125       (new SMDS_IteratorOfElements
126        (this,type, SMDS_ElemIteratorPtr(new SMDS_Mesh0DElement_MyNodeIterator(myNode))));
127   }
128 }
129
130 //=======================================================================
131 //function : operator<
132 //purpose  :
133 //=======================================================================
134 bool operator< (const SMDS_Mesh0DElement & e1, const SMDS_Mesh0DElement & e2)
135 {
136   int id1 = e1.myNode->GetID();
137   int id2 = e2.myNode->GetID();
138
139   return (id1 < id2);
140 }
141
142 /*!
143  * \brief Return node by its index
144  * \param ind - node index
145  * \retval const SMDS_MeshNode* - the node
146  */
147 const SMDS_MeshNode* SMDS_Mesh0DElement::GetNode(const int ind) const
148 {
149   if (ind == 0)
150     return myNode;
151   return NULL;
152 }
153
154 //=======================================================================
155 //function : ChangeNode
156 //purpose  :
157 //=======================================================================
158 bool SMDS_Mesh0DElement::ChangeNode (const SMDS_MeshNode * node)
159 {
160   myNode = node;
161   return true;
162 }