0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / HLRTest / HLRTest_OutLiner.cxx
1 // Created on: 1995-04-05
2 // Created by: Christophe MARION
3 // Copyright (c) 1995-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 <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>
24
25 IMPLEMENT_STANDARD_RTTIEXT(HLRTest_OutLiner,Draw_Drawable3D)
26
27 //=======================================================================
28 //function : HLRTest_OutLiner
29 //purpose  : 
30 //=======================================================================
31 HLRTest_OutLiner::HLRTest_OutLiner (const TopoDS_Shape& S)
32 {
33   myOutLiner = new HLRTopoBRep_OutLiner(S);
34 }
35
36 //=======================================================================
37 //function : DrawOn
38 //purpose  : 
39 //=======================================================================
40
41 void HLRTest_OutLiner::DrawOn (Draw_Display& /*dis*/) const 
42 {
43 }
44
45 //=======================================================================
46 //function : Copy
47 //purpose  : 
48 //=======================================================================
49
50 Handle(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
62 void HLRTest_OutLiner::Dump (Standard_OStream& S) const 
63 {
64   S << "This is an outliner" << std::endl;
65 }
66
67 //=======================================================================
68 //function : Whatis
69 //purpose  : 
70 //=======================================================================
71
72 void HLRTest_OutLiner::Whatis (Draw_Interpretor& I) const 
73 {
74   I << "outliner";
75 }
76