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 
IMPLEMENT_STANDARD_RTTIEXT(BRep_PolygonOnSurface,BRep_CurveRepresentation)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 
IsPolygonOnSurface() const46 Standard_Boolean BRep_PolygonOnSurface::IsPolygonOnSurface() const
47 {
48   return Standard_True;
49 }
50 
51 //=======================================================================
52 //function : IsPolygonOnSurface
53 //purpose  :
54 //=======================================================================
55 
IsPolygonOnSurface(const Handle (Geom_Surface)& S,const TopLoc_Location & L) const56 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 
Handle(Geom_Surface)67 const Handle(Geom_Surface)& BRep_PolygonOnSurface::Surface() const
68 {
69   return mySurface;
70 }
71 
72 //=======================================================================
73 //function : Polygon
74 //purpose  :
75 //=======================================================================
76 
Handle(Poly_Polygon2D)77 const Handle(Poly_Polygon2D)& BRep_PolygonOnSurface::Polygon() const
78 {
79   return myPolygon2D;
80 }
81 
82 //=======================================================================
83 //function : Polygon
84 //purpose  :
85 //=======================================================================
86 
Polygon(const Handle (Poly_Polygon2D)& P)87 void BRep_PolygonOnSurface::Polygon(const Handle(Poly_Polygon2D)& P)
88 {
89   myPolygon2D = P;
90 }
91 
92 //=======================================================================
93 //function : Copy
94 //purpose  :
95 //=======================================================================
96 
Handle(BRep_CurveRepresentation)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 
105 //=======================================================================
106 //function : DumpJson
107 //purpose  :
108 //=======================================================================
DumpJson(Standard_OStream & theOStream,Standard_Integer theDepth) const109 void BRep_PolygonOnSurface::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
110 {
111   OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
112 
113   OCCT_DUMP_BASE_CLASS (theOStream, theDepth, BRep_CurveRepresentation)
114 
115   OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myPolygon2D.get())
116   OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, mySurface.get())
117 }
118