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:
eap 2009-06-18 12:42:13 +00:00
parent 47e62a030c
commit 3232c8723f

View File

@ -72,6 +72,8 @@ struct SMESH_TLink: public NLink
{ if ( n1->GetID() < n2->GetID() ) std::swap( first, second ); }
SMESH_TLink(const NLink& link ):NLink( link )
{ if ( first->GetID() < second->GetID() ) std::swap( first, second ); }
const SMDS_MeshNode* node1() const { return first; }
const SMDS_MeshNode* node2() const { return second; }
};
// ============================================================