X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMDS%2FSMDS_MeshNode.hxx;h=10c1499cceb77356fcdc2d0ccf0e3d8c9c407f06;hb=bc9732c239da7261de6f236b744834d33404fc51;hp=9ef605e9e2b3f332e9061e5000f4160ade8b2c80;hpb=007c0191337598a9431229b2d3dec7fde25d4c4e;p=modules%2Fsmesh.git diff --git a/src/SMDS/SMDS_MeshNode.hxx b/src/SMDS/SMDS_MeshNode.hxx index 9ef605e9e..10c1499cc 100644 --- a/src/SMDS/SMDS_MeshNode.hxx +++ b/src/SMDS/SMDS_MeshNode.hxx @@ -17,7 +17,7 @@ // 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 +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // // @@ -27,122 +27,61 @@ #ifndef _SMDS_MeshNode_HeaderFile #define _SMDS_MeshNode_HeaderFile -#ifndef _Standard_HeaderFile -#include -#endif -#ifndef _Handle_SMDS_MeshNode_HeaderFile -#include "Handle_SMDS_MeshNode.hxx" -#endif - -#ifndef _gp_Pnt_HeaderFile -#include -#endif -#ifndef _SMDS_ListOfMeshElement_HeaderFile -#include "SMDS_ListOfMeshElement.hxx" -#endif -#ifndef _Handle_SMDS_Position_HeaderFile -#include "Handle_SMDS_Position.hxx" -#endif -#ifndef _SMDS_MeshElement_HeaderFile #include "SMDS_MeshElement.hxx" +#include "SMDS_Position.hxx" +#include + +//#ifdef WNT +//#include +//#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 -#ifndef _Standard_Integer_HeaderFile -#include -#endif -#ifndef _Standard_Real_HeaderFile -#include -#endif -#ifndef _Standard_OStream_HeaderFile -#include -#endif -#ifndef _Handle_SMDS_MeshElement_HeaderFile -#include "Handle_SMDS_MeshElement.hxx" -#endif -class SMDS_Position; -class gp_Pnt; -class SMDS_MeshElement; -class SMDS_ListOfMeshElement; - - -class SMDS_MeshNode : public SMDS_MeshElement { - -public: - - inline void* operator new(size_t,void* anAddress) - { - return anAddress; - } - inline void* operator new(size_t size) - { - return Standard::Allocate(size); - } - inline void operator delete(void *anAddress) - { - if (anAddress) Standard::Free((Standard_Address&)anAddress); - } -// inline void operator delete(void *anAddress, size_t size) -// { -// if (anAddress) Standard::Free((Standard_Address&)anAddress,size); -// } - // Methods PUBLIC - // -Standard_EXPORT SMDS_MeshNode(const Standard_Integer ID,const Standard_Real x,const Standard_Real y,const Standard_Real z); -Standard_EXPORT void Print(Standard_OStream& OS) const; -Standard_EXPORT inline Standard_Integer GetKey() const; -Standard_EXPORT inline Standard_Real X() const; -Standard_EXPORT inline Standard_Real Y() const; -Standard_EXPORT inline Standard_Real Z() const; -Standard_EXPORT inline gp_Pnt Pnt() const; -Standard_EXPORT inline void SetPnt(const gp_Pnt& P) ; -Standard_EXPORT inline void AddInverseElement(const Handle(SMDS_MeshElement)& ME) ; -Standard_EXPORT void RemoveInverseElement(const Handle(SMDS_MeshElement)& parent) ; -Standard_EXPORT inline const SMDS_ListOfMeshElement& InverseElements() const; -Standard_EXPORT inline void ClearInverseElements() ; -Standard_EXPORT void SetPosition(const Handle(SMDS_Position)& aPos) ; -Standard_EXPORT Handle_SMDS_Position GetPosition() const; -Standard_EXPORT ~SMDS_MeshNode(); - - - - - // Type management - // - Standard_EXPORT friend Handle_Standard_Type& SMDS_MeshNode_Type_(); - Standard_EXPORT const Handle(Standard_Type)& DynamicType() const; - Standard_EXPORT Standard_Boolean IsKind(const Handle(Standard_Type)&) const; - -protected: - - // Methods PROTECTED - // - - - // Fields PROTECTED - // - - -private: - - // Methods PRIVATE - // - - - // Fields PRIVATE - // -gp_Pnt myPnt; -SMDS_ListOfMeshElement myInverseElements; -Handle_SMDS_Position myPosition; - +class SMDS_WNT_EXPORT SMDS_MeshNode:public SMDS_MeshElement +{ + + public: + SMDS_MeshNode(double x, double y, double z); + void Print(std::ostream & OS) const; + 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(); + SMDS_ElemIteratorPtr GetInverseElementIterator(SMDSAbs_ElementType type=SMDSAbs_All) const; + int NbInverseNodes(SMDSAbs_ElementType type=SMDSAbs_All) const; + void SetPosition(const SMDS_PositionPtr& aPos); + const SMDS_PositionPtr& GetPosition() const; + 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); + + /*! + * \brief Return node by its index + * \param ind - node index + * \retval const SMDS_MeshNode* - the node + * + * Index is wrapped if it is out of a valid range + */ + virtual const SMDS_MeshNode* GetNode(const int) const { return this; } + + protected: + SMDS_ElemIteratorPtr + elementsIterator(SMDSAbs_ElementType type) const; + + private: + double myX, myY, myZ; + SMDS_PositionPtr myPosition; + NCollection_List myInverseElements; }; - -#include "SMDS_MeshNode.lxx" - - - -// other inline functions and methods (like "C++: function call" methods) -// - - #endif