blob: aec11ed1c1aa28103f53b8809fc09fd07cb2a403 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#include <PBRep_PolygonOnClosedSurface.ixx>
//=======================================================================
//function : PBRep_PolygonOnClosedSurface
//purpose :
//=======================================================================
PBRep_PolygonOnClosedSurface::PBRep_PolygonOnClosedSurface
(const Handle(PPoly_Polygon2D)& aPPol2d1,
const Handle(PPoly_Polygon2D)& aPPol2d2,
const Handle(PGeom_Surface)& aPSurf,
const PTopLoc_Location& aPLoc) :
PBRep_PolygonOnSurface( aPPol2d1, aPSurf, aPLoc),
myPolygon2(aPPol2d2)
{
}
//=======================================================================
//function : PBRep_PolygonOnClosedSurface::IsPolygonOnClosedSurface
//purpose :
//=======================================================================
Standard_Boolean PBRep_PolygonOnClosedSurface::IsPolygonOnClosedSurface() const
{
return Standard_True;
}
//=======================================================================
//function : PBRep_PolygonOnSurface::Polygon2
//purpose :
//=======================================================================
Handle(PPoly_Polygon2D) PBRep_PolygonOnClosedSurface::Polygon2() const
{
return myPolygon2;
}
|