blob: fa5e0de2542654cd2d027b8f9af00fb634578dc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// File: HLRTest_OutLiner.cxx
// Created: Wed Apr 5 17:06:37 1995
// Author: Christophe MARION
// <cma@ecolox>
#include <HLRTest_OutLiner.ixx>
//=======================================================================
//function : HLRTest_OutLiner
//purpose :
//=======================================================================
HLRTest_OutLiner::HLRTest_OutLiner (const TopoDS_Shape& S)
{
myOutLiner = new HLRTopoBRep_OutLiner(S);
}
//=======================================================================
//function : DrawOn
//purpose :
//=======================================================================
void HLRTest_OutLiner::DrawOn (Draw_Display& dis) const
{
}
//=======================================================================
//function : Copy
//purpose :
//=======================================================================
Handle(Draw_Drawable3D) HLRTest_OutLiner::Copy () const
{
Handle(HLRTest_OutLiner) O =
new HLRTest_OutLiner(myOutLiner->OriginalShape());
return O;
}
//=======================================================================
//function : Dump
//purpose :
//=======================================================================
void HLRTest_OutLiner::Dump (Standard_OStream& S) const
{
S << "This is an outliner" << endl;
}
//=======================================================================
//function : Whatis
//purpose :
//=======================================================================
void HLRTest_OutLiner::Whatis (Draw_Interpretor& I) const
{
I << "outliner";
}
|