0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / BRep / BRep_PolygonOnClosedTriangulation.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
42cf5bc1 17
18#include <BRep_CurveRepresentation.hxx>
19#include <BRep_PolygonOnClosedTriangulation.hxx>
20#include <Poly_PolygonOnTriangulation.hxx>
21#include <Poly_Triangulation.hxx>
22#include <Standard_Type.hxx>
23#include <TopLoc_Location.hxx>
7fd59977 24
92efcf78 25IMPLEMENT_STANDARD_RTTIEXT(BRep_PolygonOnClosedTriangulation,BRep_PolygonOnTriangulation)
26
7fd59977 27//=======================================================================
28//function : BRep_PolygonOnClosedTriangulation
29//purpose :
30//=======================================================================
7fd59977 31BRep_PolygonOnClosedTriangulation::BRep_PolygonOnClosedTriangulation
32 (const Handle(Poly_PolygonOnTriangulation)& P1,
33 const Handle(Poly_PolygonOnTriangulation)& P2,
34 const Handle(Poly_Triangulation)& T,
35 const TopLoc_Location& L):
36 BRep_PolygonOnTriangulation(P1, T, L),
37 myPolygon2(P2)
38{
39}
40
41//=======================================================================
42//function : IsPolygonOnclosedTriangulation
43//purpose :
44//=======================================================================
45
46Standard_Boolean BRep_PolygonOnClosedTriangulation::IsPolygonOnClosedTriangulation() const
47{
48 return Standard_True;
49}
50
51
52//=======================================================================
53//function : PolygonOnTriangulation2
54//purpose :
55//=======================================================================
56
57void BRep_PolygonOnClosedTriangulation::PolygonOnTriangulation2
58 (const Handle(Poly_PolygonOnTriangulation)& P2)
59{
60 myPolygon2 = P2;
61}
62//=======================================================================
63//function : PolygonOnTriangulation2
64//purpose :
65//=======================================================================
66
67const Handle(Poly_PolygonOnTriangulation)& BRep_PolygonOnClosedTriangulation::PolygonOnTriangulation2() const
68{
69 return myPolygon2;
70}
71
72
73//=======================================================================
74//function : Copy
75//purpose :
76//=======================================================================
77
78Handle(BRep_CurveRepresentation) BRep_PolygonOnClosedTriangulation::Copy() const
79{
80 Handle(BRep_PolygonOnClosedTriangulation) P;
81 P = new BRep_PolygonOnClosedTriangulation(PolygonOnTriangulation(), myPolygon2,
82 Triangulation(), Location());
83
84 return P;
85}
86
bc73b006 87//=======================================================================
88//function : DumpJson
89//purpose :
90//=======================================================================
91void BRep_PolygonOnClosedTriangulation::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
92{
93 OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
94
95 OCCT_DUMP_BASE_CLASS (theOStream, theDepth, BRep_PolygonOnTriangulation)
96
97 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myPolygon2.get())
98}