mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-01 01:10:33 +05:00
Remove unused method
- bool emptyInverseElements();
This commit is contained in:
parent
79d1c82a95
commit
9167a6a24d
@ -239,11 +239,6 @@ void SMDS_MeshNode::ClearInverseElements()
|
||||
myInverseElements.Clear();
|
||||
}
|
||||
|
||||
bool SMDS_MeshNode::emptyInverseElements()
|
||||
{
|
||||
return myInverseElements.IsEmpty() != Standard_False;
|
||||
}
|
||||
|
||||
//================================================================================
|
||||
/*!
|
||||
* \brief Count inverse elements of given type
|
||||
|
@ -38,23 +38,26 @@ class SMDS_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 setXYZ(double x, double y, double z);
|
||||
|
||||
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 NbInverseElements(SMDSAbs_ElementType type=SMDSAbs_All) const;
|
||||
|
||||
void SetPosition(const SMDS_PositionPtr& aPos);
|
||||
const SMDS_PositionPtr& GetPosition() const;
|
||||
|
||||
SMDSAbs_ElementType GetType() const;
|
||||
SMDSAbs_EntityType GetEntityType() const {return SMDSEntity_Node;}
|
||||
int NbNodes() const;
|
||||
void setXYZ(double x, double y, double z);
|
||||
|
||||
friend bool operator<(const SMDS_MeshNode& e1, const SMDS_MeshNode& e2);
|
||||
void Print(std::ostream & OS) const;
|
||||
|
||||
/*!
|
||||
* \brief Return node by its index
|
||||
@ -62,6 +65,7 @@ public:
|
||||
* \retval const SMDS_MeshNode* - the node
|
||||
*/
|
||||
virtual const SMDS_MeshNode* GetNode(const int) const { return this; }
|
||||
virtual int NbNodes() const;
|
||||
|
||||
protected:
|
||||
SMDS_ElemIteratorPtr
|
||||
|
Loading…
Reference in New Issue
Block a user