0031313: Foundation Classes - Dump improvement for classes
[occt.git] / src / BRep / BRep_PolygonOnSurface.cxx
CommitLineData
b311480e 1// Created on: 1995-03-15
2// Created by: Laurent PAINNOT
3// Copyright (c) 1995-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 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
973c2be1 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
7fd59977 17
42cf5bc1 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>
7fd59977 25
92efcf78 26IMPLEMENT_STANDARD_RTTIEXT(BRep_PolygonOnSurface,BRep_CurveRepresentation)
27
7fd59977 28//=======================================================================
29//function : BRep_PolygonOnSurface
30//purpose :
31//=======================================================================
7fd59977 32BRep_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
46Standard_Boolean BRep_PolygonOnSurface::IsPolygonOnSurface() const
47{
48 return Standard_True;
49}
50
51//=======================================================================
52//function : IsPolygonOnSurface
53//purpose :
54//=======================================================================
55
56Standard_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
67const Handle(Geom_Surface)& BRep_PolygonOnSurface::Surface() const
68{
69 return mySurface;
70}
71
72//=======================================================================
73//function : Polygon
74//purpose :
75//=======================================================================
76
77const Handle(Poly_Polygon2D)& BRep_PolygonOnSurface::Polygon() const
78{
79 return myPolygon2D;
80}
81
82//=======================================================================
83//function : Polygon
84//purpose :
85//=======================================================================
86
87void BRep_PolygonOnSurface::Polygon(const Handle(Poly_Polygon2D)& P)
88{
89 myPolygon2D = P;
90}
91
92//=======================================================================
93//function : Copy
94//purpose :
95//=======================================================================
96
97Handle(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
bc73b006 105//=======================================================================
106//function : DumpJson
107//purpose :
108//=======================================================================
109void 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}