smesh/src/SMDS/SMDS_MeshNode.hxx

78 lines
2.3 KiB
C++
Raw Normal View History

2003-07-10 15:49:12 +06:00
// SMESH SMDS : implementaion of Salome mesh data structure
2003-05-19 19:49:00 +06:00
//
2003-07-10 15:49:12 +06:00
// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
2003-05-19 19:49:00 +06:00
//
2003-07-10 15:49:12 +06:00
//
//
// File : SMDS_MeshNode.hxx
// Module : SMESH
2003-05-19 19:49:00 +06:00
#ifndef _SMDS_MeshNode_HeaderFile
#define _SMDS_MeshNode_HeaderFile
#include "SMDS_MeshElement.hxx"
2003-09-03 23:30:36 +06:00
#include "SMDS_Position.hxx"
2005-01-20 11:25:54 +05:00
#include <NCollection_List.hxx>
2003-09-03 23:30:36 +06:00
2005-08-30 18:57:02 +06:00
//#ifdef WNT
//#include <SALOME_WNT.hxx>
//#else
//#define SALOME_WNT_EXPORT
//#endif
#if defined WNT && defined WIN32 && defined SMDS_EXPORTS
#define SMDS_WNT_EXPORT __declspec( dllexport )
#else
#define SMDS_WNT_EXPORT
#endif
class SMDS_WNT_EXPORT SMDS_MeshNode:public SMDS_MeshElement
2003-09-03 23:30:36 +06:00
{
public:
SMDS_MeshNode(double x, double y, double z);
2004-12-01 15:48:31 +05:00
void Print(std::ostream & OS) const;
2003-09-03 23:30:36 +06:00
double X() const;
double Y() const;
double Z() const;
void AddInverseElement(const SMDS_MeshElement * ME);
void RemoveInverseElement(const SMDS_MeshElement * parent);
void ClearInverseElements();
bool emptyInverseElements();
2004-06-18 14:34:31 +06:00
SMDS_ElemIteratorPtr GetInverseElementIterator() const;
void SetPosition(const SMDS_PositionPtr& aPos);
const SMDS_PositionPtr& GetPosition() const;
2003-09-03 23:30:36 +06:00
SMDSAbs_ElementType GetType() const;
int NbNodes() const;
void setXYZ(double x, double y, double z);
friend bool operator<(const SMDS_MeshNode& e1, const SMDS_MeshNode& e2);
protected:
2004-06-18 14:34:31 +06:00
SMDS_ElemIteratorPtr
2003-09-03 23:30:36 +06:00
elementsIterator(SMDSAbs_ElementType type) const;
private:
double myX, myY, myZ;
2004-06-18 14:34:31 +06:00
SMDS_PositionPtr myPosition;
2005-01-20 11:25:54 +05:00
NCollection_List<const SMDS_MeshElement*> myInverseElements;
2003-05-19 19:49:00 +06:00
};
#endif