0031313: Foundation Classes - Dump improvement for classes
[occt.git] / src / BRep / BRep_TFace.cxx
... / ...
CommitLineData
1// Created on: 1992-08-25
2// Created by: Remi Lequette
3// Copyright (c) 1992-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_TFace.hxx>
19#include <Geom_Surface.hxx>
20#include <Poly_Triangulation.hxx>
21#include <Standard_Type.hxx>
22#include <TopAbs.hxx>
23#include <TopLoc_Location.hxx>
24#include <TopoDS_Shape.hxx>
25
26IMPLEMENT_STANDARD_RTTIEXT(BRep_TFace,TopoDS_TFace)
27
28//=======================================================================
29//function : BRep_TFace
30//purpose :
31//=======================================================================
32BRep_TFace::BRep_TFace() :
33 TopoDS_TFace(),
34 myTolerance(RealEpsilon()),
35 myNaturalRestriction(Standard_False)
36{
37}
38
39//=======================================================================
40//function : EmptyCopy
41//purpose :
42//=======================================================================
43
44Handle(TopoDS_TShape) BRep_TFace::EmptyCopy() const
45{
46 Handle(BRep_TFace) TF =
47 new BRep_TFace();
48 TF->Surface(mySurface);
49 TF->Location(myLocation);
50 TF->Tolerance(myTolerance);
51 return TF;
52}
53
54//=======================================================================
55//function : DumpJson
56//purpose :
57//=======================================================================
58void BRep_TFace::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
59{
60 OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
61
62 OCCT_DUMP_BASE_CLASS (theOStream, theDepth, TopoDS_TFace)
63
64 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, mySurface.get())
65 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myTriangulation.get())
66 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &myLocation)
67
68 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myTolerance)
69 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myNaturalRestriction)
70}