0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / HLRTest / HLRTest_OutLiner.cxx
CommitLineData
b311480e 1// Created on: 1995-04-05
2// Created by: Christophe MARION
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 <Draw_Display.hxx>
19#include <Draw_Drawable3D.hxx>
20#include <HLRTest_OutLiner.hxx>
21#include <HLRTopoBRep_OutLiner.hxx>
22#include <Standard_Type.hxx>
23#include <TopoDS_Shape.hxx>
7fd59977 24
92efcf78 25IMPLEMENT_STANDARD_RTTIEXT(HLRTest_OutLiner,Draw_Drawable3D)
26
7fd59977 27//=======================================================================
28//function : HLRTest_OutLiner
29//purpose :
30//=======================================================================
7fd59977 31HLRTest_OutLiner::HLRTest_OutLiner (const TopoDS_Shape& S)
32{
33 myOutLiner = new HLRTopoBRep_OutLiner(S);
34}
35
36//=======================================================================
37//function : DrawOn
38//purpose :
39//=======================================================================
40
35e08fe8 41void HLRTest_OutLiner::DrawOn (Draw_Display& /*dis*/) const
7fd59977 42{
43}
44
45//=======================================================================
46//function : Copy
47//purpose :
48//=======================================================================
49
50Handle(Draw_Drawable3D) HLRTest_OutLiner::Copy () const
51{
52 Handle(HLRTest_OutLiner) O =
53 new HLRTest_OutLiner(myOutLiner->OriginalShape());
54 return O;
55}
56
57//=======================================================================
58//function : Dump
59//purpose :
60//=======================================================================
61
62void HLRTest_OutLiner::Dump (Standard_OStream& S) const
63{
04232180 64 S << "This is an outliner" << std::endl;
7fd59977 65}
66
67//=======================================================================
68//function : Whatis
69//purpose :
70//=======================================================================
71
72void HLRTest_OutLiner::Whatis (Draw_Interpretor& I) const
73{
74 I << "outliner";
75}
76