0023024: Update headers of OCCT files
[occt.git] / src / BRep / BRep_PolygonOnSurface.cxx
1 // Created on: 1995-03-15
2 // Created by: Laurent PAINNOT
3 // Copyright (c) 1995-1999 Matra Datavision
4 // Copyright (c) 1999-2012 OPEN CASCADE SAS
5 //
6 // The content of this file is subject to the Open CASCADE Technology Public
7 // License Version 6.5 (the "License"). You may not use the content of this file
8 // except in compliance with the License. Please obtain a copy of the License
9 // at http://www.opencascade.org and read it completely before using this file.
10 //
11 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 //
14 // The Original Code and all software distributed under the License is
15 // distributed on an "AS IS" basis, without warranty of any kind, and the
16 // Initial Developer hereby disclaims all such warranties, including without
17 // limitation, any warranties of merchantability, fitness for a particular
18 // purpose or non-infringement. Please see the License for the specific terms
19 // and conditions governing the rights and limitations under the License.
20
21
22
23 #include <BRep_PolygonOnSurface.ixx>
24
25
26
27 //=======================================================================
28 //function : BRep_PolygonOnSurface
29 //purpose  : 
30 //=======================================================================
31
32 BRep_PolygonOnSurface::BRep_PolygonOnSurface(const Handle(Poly_Polygon2D)& P, 
33                                              const Handle(Geom_Surface)&   S, 
34                                              const TopLoc_Location&        L):
35                                              BRep_CurveRepresentation(L),
36                                              myPolygon2D(P),
37                                              mySurface(S)
38 {
39 }
40
41 //=======================================================================
42 //function : IsPolygonOnSurface
43 //purpose  : 
44 //=======================================================================
45
46 Standard_Boolean BRep_PolygonOnSurface::IsPolygonOnSurface() const 
47 {
48   return Standard_True;
49 }
50
51 //=======================================================================
52 //function : IsPolygonOnSurface
53 //purpose  : 
54 //=======================================================================
55
56 Standard_Boolean BRep_PolygonOnSurface::IsPolygonOnSurface(const Handle(Geom_Surface)& S, 
57                                                            const TopLoc_Location&      L) const 
58 {  
59   return (S == mySurface) && (L == myLocation);
60 }
61
62 //=======================================================================
63 //function : Surface
64 //purpose  : 
65 //=======================================================================
66
67 const Handle(Geom_Surface)& BRep_PolygonOnSurface::Surface() const 
68 {
69   return mySurface;
70 }
71
72 //=======================================================================
73 //function : Polygon
74 //purpose  : 
75 //=======================================================================
76
77 const Handle(Poly_Polygon2D)& BRep_PolygonOnSurface::Polygon() const 
78 {
79   return myPolygon2D;
80 }
81
82 //=======================================================================
83 //function : Polygon
84 //purpose  : 
85 //=======================================================================
86
87 void BRep_PolygonOnSurface::Polygon(const Handle(Poly_Polygon2D)& P)
88 {
89   myPolygon2D = P;
90 }
91
92 //=======================================================================
93 //function : Copy
94 //purpose  : 
95 //=======================================================================
96
97 Handle(BRep_CurveRepresentation) BRep_PolygonOnSurface::Copy() const 
98 {
99   Handle(BRep_PolygonOnSurface) P = new BRep_PolygonOnSurface(myPolygon2D,
100                                                               mySurface,
101                                                               Location());
102   return P;
103 }
104