blob: 4f5220d68b78d0a2911b234ab0503296c5d640dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// File: BRepMesh_PairOfPolygon.lxx
// Created: 26.01.09 11:24:04
// Author: Pavel TELKOV
// Copyright: Open CASCADE 2009
//=======================================================================
//function : First
//purpose :
//=======================================================================
inline const Handle(Poly_PolygonOnTriangulation)& BRepMesh_PairOfPolygon::First() const
{
return myFirst;
}
//=======================================================================
//function : Last
//purpose :
//=======================================================================
inline const Handle(Poly_PolygonOnTriangulation)& BRepMesh_PairOfPolygon::Last() const
{
return myLast;
}
|