0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / BRep / BRep_PolygonOnTriangulation.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_PolygonOnTriangulation.hxx>
20 #include <Poly_PolygonOnTriangulation.hxx>
21 #include <Poly_Triangulation.hxx>
22 #include <Standard_Type.hxx>
23 #include <TopLoc_Location.hxx>
24
25 IMPLEMENT_STANDARD_RTTIEXT(BRep_PolygonOnTriangulation,BRep_CurveRepresentation)
26
27 //=======================================================================
28 //function : BRep_PolygonOnTriangulation
29 //purpose  : 
30 //=======================================================================
31 BRep_PolygonOnTriangulation::BRep_PolygonOnTriangulation
32 (const Handle(Poly_PolygonOnTriangulation)& P, 
33  const Handle(Poly_Triangulation)&          T,
34  const TopLoc_Location&                     L):
35  BRep_CurveRepresentation(L),
36  myPolygon(P),
37  myTriangulation(T)
38 {
39 }
40
41
42 //=======================================================================
43 //function : IsPolygonOnTriangulation
44 //purpose  : 
45 //=======================================================================
46
47 Standard_Boolean BRep_PolygonOnTriangulation::IsPolygonOnTriangulation() const 
48 {
49   return Standard_True;
50 }
51
52 //=======================================================================
53 //function : IsPolygonOnTriangulation
54 //purpose  : 
55 //=======================================================================
56
57 Standard_Boolean BRep_PolygonOnTriangulation::IsPolygonOnTriangulation
58   (const Handle(Poly_Triangulation)& T,
59    const TopLoc_Location&            L) const 
60 {
61   return (T == myTriangulation) && (L == myLocation);
62 }
63
64 //=======================================================================
65 //function : PolygonOnTriangulation
66 //purpose  : 
67 //=======================================================================
68
69 void BRep_PolygonOnTriangulation::PolygonOnTriangulation
70   (const Handle(Poly_PolygonOnTriangulation)& P)
71 {
72   myPolygon = P;
73 }
74
75 //=======================================================================
76 //function : PolygonOnTriangulation
77 //purpose  : 
78 //=======================================================================
79
80 const Handle(Poly_PolygonOnTriangulation)& BRep_PolygonOnTriangulation::PolygonOnTriangulation() const
81 {
82   return myPolygon;
83 }
84
85 //=======================================================================
86 //function : Triangulation
87 //purpose  : 
88 //=======================================================================
89
90 const Handle(Poly_Triangulation)& BRep_PolygonOnTriangulation::Triangulation() const
91 {
92   return myTriangulation;
93 }
94
95 //=======================================================================
96 //function : Copy
97 //purpose  : 
98 //=======================================================================
99
100 Handle(BRep_CurveRepresentation) BRep_PolygonOnTriangulation::Copy() const 
101 {
102   Handle(BRep_PolygonOnTriangulation) P = 
103     new BRep_PolygonOnTriangulation(myPolygon, myTriangulation, Location());
104   
105   return P;
106 }
107
108 //=======================================================================
109 //function : DumpJson
110 //purpose  : 
111 //=======================================================================
112 void BRep_PolygonOnTriangulation::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
113 {
114   OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
115
116   OCCT_DUMP_BASE_CLASS (theOStream, theDepth, BRep_CurveRepresentation)
117
118   OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myPolygon.get())
119   OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myTriangulation.get())
120 }