0023948: Wrong intersection between a surface of revolution and a plane.
[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
17#include <BRep_PolygonOnSurface.ixx>
18
19
20
21//=======================================================================
22//function : BRep_PolygonOnSurface
23//purpose :
24//=======================================================================
25
26BRep_PolygonOnSurface::BRep_PolygonOnSurface(const Handle(Poly_Polygon2D)& P,
27 const Handle(Geom_Surface)& S,
28 const TopLoc_Location& L):
29 BRep_CurveRepresentation(L),
30 myPolygon2D(P),
31 mySurface(S)
32{
33}
34
35//=======================================================================
36//function : IsPolygonOnSurface
37//purpose :
38//=======================================================================
39
40Standard_Boolean BRep_PolygonOnSurface::IsPolygonOnSurface() const
41{
42 return Standard_True;
43}
44
45//=======================================================================
46//function : IsPolygonOnSurface
47//purpose :
48//=======================================================================
49
50Standard_Boolean BRep_PolygonOnSurface::IsPolygonOnSurface(const Handle(Geom_Surface)& S,
51 const TopLoc_Location& L) const
52{
53 return (S == mySurface) && (L == myLocation);
54}
55
56//=======================================================================
57//function : Surface
58//purpose :
59//=======================================================================
60
61const Handle(Geom_Surface)& BRep_PolygonOnSurface::Surface() const
62{
63 return mySurface;
64}
65
66//=======================================================================
67//function : Polygon
68//purpose :
69//=======================================================================
70
71const Handle(Poly_Polygon2D)& BRep_PolygonOnSurface::Polygon() const
72{
73 return myPolygon2D;
74}
75
76//=======================================================================
77//function : Polygon
78//purpose :
79//=======================================================================
80
81void BRep_PolygonOnSurface::Polygon(const Handle(Poly_Polygon2D)& P)
82{
83 myPolygon2D = P;
84}
85
86//=======================================================================
87//function : Copy
88//purpose :
89//=======================================================================
90
91Handle(BRep_CurveRepresentation) BRep_PolygonOnSurface::Copy() const
92{
93 Handle(BRep_PolygonOnSurface) P = new BRep_PolygonOnSurface(myPolygon2D,
94 mySurface,
95 Location());
96 return P;
97}
98