0031321: C# wrapper - wrap AIS_ViewController
[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>
63bcc448 21
92efcf78 22IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_CStructure,Standard_Transient)
23
63bcc448 24//=============================================================================
25//function : Graphic3d_CStructure
26//purpose :
27//=============================================================================
28Graphic3d_CStructure::Graphic3d_CStructure (const Handle(Graphic3d_StructureManager)& theManager)
016e5959 29: myZLayer (Graphic3d_ZLayerId_Default),
63bcc448 30 Priority (Structure_MAX_PRIORITY / 2),
31 PreviousPriority (Structure_MAX_PRIORITY / 2),
63bcc448 32 ContainsFacet (0),
33 IsInfinite (0),
34 stick (0),
35 highlight (0),
36 visible (1),
63bcc448 37 HLRValidation (0),
b7cd4ba7 38 IsForHighlight (Standard_False),
39 IsMutable (Standard_False),
40 Is2dText (Standard_False),
d325cb7f 41 myGraphicDriver (theManager->GraphicDriver()),
8e6ce38c 42 myIsCulled (Standard_True),
43 myBndBoxClipCheck(Standard_True)
7fd59977 44{
016e5959 45 Id = myGraphicDriver->NewIdentification();
7fd59977 46}