A sorted pair of nodes. More...
#include <SMESH_TypeDefs.hxx>

Public Member Functions | |
| SMESH_TLink (const SMDS_MeshNode *n1, const SMDS_MeshNode *n2) | |
| SMESH_TLink (const NLink &link) | |
| const SMDS_MeshNode * | node1 () const |
| const SMDS_MeshNode * | node2 () const |
A sorted pair of nodes.
Definition at line 57 of file SMESH_TypeDefs.hxx.
| SMESH_TLink.SMESH_TLink | ( | const SMDS_MeshNode * | n1, |
| const SMDS_MeshNode * | n2 | ||
| ) |
Definition at line 59 of file SMESH_TypeDefs.hxx.
References SMDS_MeshElement.GetID().
| SMESH_TLink.SMESH_TLink | ( | const NLink & | link | ) |
Definition at line 61 of file SMESH_TypeDefs.hxx.
:NLink( link ) { if ( first->GetID() < second->GetID() ) std::swap( first, second ); }
| const SMDS_MeshNode* SMESH_TLink.node1 | ( | ) | const |
Definition at line 63 of file SMESH_TypeDefs.hxx.
Referenced by SMESH_ElementSearcherImpl.findOuterBoundary(), and StdMeshers_Quadrangle_2D.Smooth().
{ return first; }
| const SMDS_MeshNode* SMESH_TLink.node2 | ( | ) | const |
Definition at line 64 of file SMESH_TypeDefs.hxx.
Referenced by SMESH_ElementSearcherImpl.findOuterBoundary(), and StdMeshers_Quadrangle_2D.Smooth().
{ return second; }