mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-12 01:30:34 +05:00
0020128: EDF SMESH 926 : Quadratic conversion of BLSURF mesh
struct SMESH_TLink: public NLink { + const SMDS_MeshNode* node1() const { return first; } + const SMDS_MeshNode* node2() const { return second; } };
This commit is contained in:
parent
47e62a030c
commit
3232c8723f
@ -72,6 +72,8 @@ struct SMESH_TLink: public NLink
|
|||||||
{ if ( n1->GetID() < n2->GetID() ) std::swap( first, second ); }
|
{ if ( n1->GetID() < n2->GetID() ) std::swap( first, second ); }
|
||||||
SMESH_TLink(const NLink& link ):NLink( link )
|
SMESH_TLink(const NLink& link ):NLink( link )
|
||||||
{ if ( first->GetID() < second->GetID() ) std::swap( first, second ); }
|
{ if ( first->GetID() < second->GetID() ) std::swap( first, second ); }
|
||||||
|
const SMDS_MeshNode* node1() const { return first; }
|
||||||
|
const SMDS_MeshNode* node2() const { return second; }
|
||||||
};
|
};
|
||||||
|
|
||||||
// ============================================================
|
// ============================================================
|
||||||
|
Loading…
Reference in New Issue
Block a user