0024428: Implementation of LGPL license
[occt.git] / src / BRep / BRep_PolygonOnClosedTriangulation.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
9 // under the terms of the GNU Lesser General Public 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 #include <BRep_PolygonOnClosedTriangulation.ixx>
18
19 //=======================================================================
20 //function : BRep_PolygonOnClosedTriangulation
21 //purpose  : 
22 //=======================================================================
23
24 BRep_PolygonOnClosedTriangulation::BRep_PolygonOnClosedTriangulation
25   (const Handle(Poly_PolygonOnTriangulation)& P1,
26    const Handle(Poly_PolygonOnTriangulation)& P2, 
27    const Handle(Poly_Triangulation)&          T, 
28    const TopLoc_Location&                     L):
29    BRep_PolygonOnTriangulation(P1, T, L),
30    myPolygon2(P2)
31 {
32 }
33
34 //=======================================================================
35 //function : IsPolygonOnclosedTriangulation
36 //purpose  : 
37 //=======================================================================
38
39 Standard_Boolean BRep_PolygonOnClosedTriangulation::IsPolygonOnClosedTriangulation() const 
40 {
41   return Standard_True;
42 }
43
44
45 //=======================================================================
46 //function : PolygonOnTriangulation2
47 //purpose  : 
48 //=======================================================================
49
50 void BRep_PolygonOnClosedTriangulation::PolygonOnTriangulation2
51   (const Handle(Poly_PolygonOnTriangulation)& P2)
52 {
53   myPolygon2 = P2;
54 }
55 //=======================================================================
56 //function : PolygonOnTriangulation2
57 //purpose  : 
58 //=======================================================================
59
60 const Handle(Poly_PolygonOnTriangulation)& BRep_PolygonOnClosedTriangulation::PolygonOnTriangulation2() const 
61 {
62   return myPolygon2;
63 }
64
65
66 //=======================================================================
67 //function : Copy
68 //purpose  : 
69 //=======================================================================
70
71 Handle(BRep_CurveRepresentation) BRep_PolygonOnClosedTriangulation::Copy() const 
72 {
73   Handle(BRep_PolygonOnClosedTriangulation) P;
74   P = new BRep_PolygonOnClosedTriangulation(PolygonOnTriangulation(), myPolygon2, 
75                                             Triangulation(), Location());
76
77   return P;
78 }
79