blob: 7a41b1f0fc43913f936c46e979c3df40de3a1bb2 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// File: BRep_Polygon3D.cxx
// Created: Wed Mar 15 13:41:41 1995
// Author: Laurent PAINNOT
// <lpa@metrox>
#include <BRep_Polygon3D.ixx>
//=======================================================================
//function : BRep_Polygon3D
//purpose :
//=======================================================================
BRep_Polygon3D::BRep_Polygon3D(const Handle(Poly_Polygon3D)& P,
const TopLoc_Location& L):
BRep_CurveRepresentation(L),
myPolygon3D(P)
{
}
//=======================================================================
//function : IsPolygon3D
//purpose :
//=======================================================================
Standard_Boolean BRep_Polygon3D::IsPolygon3D() const
{
return Standard_True;
}
//=======================================================================
//function : Polygon3D
//purpose :
//=======================================================================
const Handle(Poly_Polygon3D)& BRep_Polygon3D::Polygon3D() const
{
return myPolygon3D;
}
//=======================================================================
//function : Polygon3d
//purpose :
//=======================================================================
void BRep_Polygon3D::Polygon3D(const Handle(Poly_Polygon3D)& P)
{
myPolygon3D = P;
}
//=======================================================================
//function : Copy
//purpose :
//=======================================================================
Handle(BRep_CurveRepresentation) BRep_Polygon3D::Copy() const
{
Handle(BRep_Polygon3D) P = new BRep_Polygon3D(myPolygon3D, Location());
return P;
}
|