SALOME - SMESH
SMDS_MeshNode.hxx
Go to the documentation of this file.
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_MeshNode.hxx
24 // Module : SMESH
25 //
26 #ifndef _SMDS_MeshNode_HeaderFile
27 #define _SMDS_MeshNode_HeaderFile
28 
29 #include "SMESH_SMDS.hxx"
30 
31 #include "SMDS_MeshElement.hxx"
32 #include "SMDS_Position.hxx"
33 #include <NCollection_List.hxx>
34 
36 {
37 
38 public:
39  SMDS_MeshNode(double x, double y, double z);
40  void Print(std::ostream & OS) const;
41  double X() const;
42  double Y() const;
43  double Z() const;
45  void RemoveInverseElement(const SMDS_MeshElement * parent);
50  void SetPosition(const SMDS_PositionPtr& aPos);
51  const SMDS_PositionPtr& GetPosition() const;
54  int NbNodes() const;
55  void setXYZ(double x, double y, double z);
56  friend bool operator<(const SMDS_MeshNode& e1, const SMDS_MeshNode& e2);
57 
63  virtual const SMDS_MeshNode* GetNode(const int) const { return this; }
64 
65 protected:
68 
69 private:
70  double myX, myY, myZ;
72  NCollection_List<const SMDS_MeshElement*> myInverseElements;
73 };
74 
75 #endif
SMDS_MeshNode::Print
void Print(std::ostream &OS) const
SMDS_ElemIteratorPtr
boost::shared_ptr< SMDS_Iterator< const SMDS_MeshElement * > > SMDS_ElemIteratorPtr
Definition: SMDS_ElemIterator.hxx:42
SMDSAbs_All
@ SMDSAbs_All
Definition: SMDSAbs_ElementType.hxx:34
SMDS_MeshNode::AddInverseElement
void AddInverseElement(const SMDS_MeshElement *ME)
SMDS_EXPORT
#define SMDS_EXPORT
Definition: SMESH_SMDS.hxx:36
SMDS_MeshNode::myPosition
SMDS_PositionPtr myPosition
Definition: SMDS_MeshNode.hxx:71
SMDS_MeshNode::ClearInverseElements
void ClearInverseElements()
SMESH_SMDS.hxx
SMDS_Position.hxx
SMDSEntity_Node
@ SMDSEntity_Node
Definition: SMDSAbs_ElementType.hxx:74
SMDS_MeshNode::elementsIterator
SMDS_ElemIteratorPtr elementsIterator(SMDSAbs_ElementType type) const
SMDS_MeshNode::GetEntityType
SMDSAbs_EntityType GetEntityType() const
Return type of entity.
Definition: SMDS_MeshNode.hxx:53
SMDS_MeshNode::operator<
friend bool operator<(const SMDS_MeshNode &e1, const SMDS_MeshNode &e2)
SMDS_MeshNode::RemoveInverseElement
void RemoveInverseElement(const SMDS_MeshElement *parent)
SMDS_MeshNode::myInverseElements
NCollection_List< const SMDS_MeshElement * > myInverseElements
Definition: SMDS_MeshNode.hxx:72
SMDS_MeshNode::GetPosition
const SMDS_PositionPtr & GetPosition() const
SMDS_MeshNode::GetInverseElementIterator
SMDS_ElemIteratorPtr GetInverseElementIterator(SMDSAbs_ElementType type=SMDSAbs_All) const
SMDS_MeshNode::GetType
SMDSAbs_ElementType GetType() const
Return the type of the current element.
SMDS_PositionPtr
boost::shared_ptr< SMDS_Position > SMDS_PositionPtr
Definition: SMDS_Position.hxx:34
SMDS_MeshNode::NbNodes
int NbNodes() const
SMDS_MeshNode::SMDS_MeshNode
SMDS_MeshNode(double x, double y, double z)
SMDS_MeshElement.hxx
SMDS_MeshNode::Y
double Y() const
SMDSAbs_EntityType
SMDSAbs_EntityType
Definition: SMDSAbs_ElementType.hxx:73
SMDS_MeshNode::SetPosition
void SetPosition(const SMDS_PositionPtr &aPos)
SMDS_MeshNode::GetNode
virtual const SMDS_MeshNode * GetNode(const int) const
Return node by its index.
Definition: SMDS_MeshNode.hxx:63
SMDSAbs_ElementType
SMDSAbs_ElementType
Type (node, edge, face or volume) of elements.
Definition: SMDSAbs_ElementType.hxx:33
SMDS_MeshNode::setXYZ
void setXYZ(double x, double y, double z)
SMDS_MeshNode::emptyInverseElements
bool emptyInverseElements()
SMDS_MeshNode
Definition: SMDS_MeshNode.hxx:36
SMDS_MeshNode::myZ
double myZ
Definition: SMDS_MeshNode.hxx:70
SMDS_MeshNode::NbInverseElements
int NbInverseElements(SMDSAbs_ElementType type=SMDSAbs_All) const
SMDS_MeshNode::X
double X() const
SMDS_MeshElement
Base class for elements.
Definition: SMDS_MeshElement.hxx:50
SMDS_MeshNode::Z
double Z() const