0030686: Visualization, SelectMgr_ViewerSelector - sorting issues of transformation...
[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-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <BRep_CurveRepresentation.hxx>
19 #include <BRep_PolygonOnSurface.hxx>
20 #include <Geom_Surface.hxx>
21 #include <Poly_Polygon2D.hxx>
22 #include <Standard_DomainError.hxx>
23 #include <Standard_Type.hxx>
24 #include <TopLoc_Location.hxx>
25
26 IMPLEMENT_STANDARD_RTTIEXT(BRep_PolygonOnSurface,BRep_CurveRepresentation)
27
28 //=======================================================================
29 //function : BRep_PolygonOnSurface
30 //purpose  : 
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