0031004: Coding - eliminate warnings issued by gcc 9.1.0
[occt.git] / src / Graphic3d / Graphic3d_CStructure.cxx
CommitLineData
b311480e 1// Copyright (c) 1995-1999 Matra Datavision
973c2be1 2// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 3//
973c2be1 4// This file is part of Open CASCADE Technology software library.
b311480e 5//
d5f74e42 6// This library is free software; you can redistribute it and/or modify it under
7// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 8// by the Free Software Foundation, with special exception defined in the file
9// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10// distribution for complete text of the license and disclaimer of any warranty.
b311480e 11//
973c2be1 12// Alternatively, this file may be used under the terms of Open CASCADE
13// commercial license or contractual agreement.
7fd59977 14
15#include <Graphic3d_CStructure.hxx>
16
19286d7c 17#include "Graphic3d_Structure.pxx"
63bcc448 18#include <Graphic3d_StructureManager.hxx>
19#include <Graphic3d_TransModeFlags.hxx>
016e5959 20#include <Graphic3d_GraphicDriver.hxx>
bc73b006 21#include <Standard_Dump.hxx>
63bcc448 22
92efcf78 23IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_CStructure,Standard_Transient)
24
63bcc448 25//=============================================================================
26//function : Graphic3d_CStructure
27//purpose :
28//=============================================================================
29Graphic3d_CStructure::Graphic3d_CStructure (const Handle(Graphic3d_StructureManager)& theManager)
016e5959 30: myZLayer (Graphic3d_ZLayerId_Default),
63bcc448 31 Priority (Structure_MAX_PRIORITY / 2),
32 PreviousPriority (Structure_MAX_PRIORITY / 2),
63bcc448 33 ContainsFacet (0),
34 IsInfinite (0),
35 stick (0),
36 highlight (0),
37 visible (1),
63bcc448 38 HLRValidation (0),
b7cd4ba7 39 IsForHighlight (Standard_False),
40 IsMutable (Standard_False),
41 Is2dText (Standard_False),
d325cb7f 42 myGraphicDriver (theManager->GraphicDriver()),
8e6ce38c 43 myIsCulled (Standard_True),
44 myBndBoxClipCheck(Standard_True)
7fd59977 45{
016e5959 46 Id = myGraphicDriver->NewIdentification();
7fd59977 47}
bc73b006 48
49//=======================================================================
50//function : DumpJson
51//purpose :
52//=======================================================================
53void Graphic3d_CStructure::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
54{
55 OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
56
57 for (Graphic3d_SequenceOfGroup::Iterator anIterator (myGroups); anIterator.More(); anIterator.Next())
58 {
59 const Handle(Graphic3d_Group)& aGroup = anIterator.Value();
60 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, aGroup.get())
61 }
62
63 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, Id)
64 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myZLayer)
65 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, Priority)
66 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, PreviousPriority)
67 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, ContainsFacet)
68
69 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, IsInfinite)
70 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, stick)
71 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, highlight)
72 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, visible)
73
74 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, HLRValidation)
75 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, IsForHighlight)
76 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, IsMutable)
77 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, Is2dText)
78
79 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &myBndBox)
80
81 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myTrsf.get())
82 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myTrsfPers.get())
83 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myClipPlanes.get())
84 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myHighlightStyle.get())
85
86 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myIsCulled)
87 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myBndBoxClipCheck)
88}