0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / HLRTest / HLRTest_DrawablePolyEdgeTool.lxx
1 // Created on: 1995-11-15
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 //function : Show
19 //purpose  : 
20 //=======================================================================
21
22 inline void HLRTest_DrawablePolyEdgeTool::Show()
23 { myHideMode = Standard_False; }
24
25 //=======================================================================
26 //function : Hide
27 //purpose  : 
28 //=======================================================================
29
30 inline void HLRTest_DrawablePolyEdgeTool::Hide()
31 { myHideMode = Standard_True; }
32
33 //=======================================================================
34 //function : DisplayRg1Line
35 //purpose  : 
36 //=======================================================================
37
38 inline void 
39 HLRTest_DrawablePolyEdgeTool::DisplayRg1Line (const Standard_Boolean B)
40 { myDispRg1 = B; }
41
42 //=======================================================================
43 //function : DisplayRg1Line
44 //purpose  : 
45 //=======================================================================
46
47 inline Standard_Boolean 
48 HLRTest_DrawablePolyEdgeTool::DisplayRg1Line () const
49 { return myDispRg1; }
50
51 //=======================================================================
52 //function : DisplayRgNLine
53 //purpose  : 
54 //=======================================================================
55
56 inline void
57 HLRTest_DrawablePolyEdgeTool::DisplayRgNLine(const Standard_Boolean B)
58 { myDispRgN = B; }
59
60 //=======================================================================
61 //function : DisplayRgNLine
62 //purpose  : 
63 //=======================================================================
64
65 inline Standard_Boolean 
66 HLRTest_DrawablePolyEdgeTool::DisplayRgNLine () const
67 { return myDispRgN; }
68
69 //=======================================================================
70 //function : DisplayHidden
71 //purpose  : 
72 //=======================================================================
73
74 inline void
75 HLRTest_DrawablePolyEdgeTool::DisplayHidden(const Standard_Boolean B)
76 { myDispHid = B; }
77
78 //=======================================================================
79 //function : DisplayHidden
80 //purpose  : 
81 //=======================================================================
82
83 inline Standard_Boolean 
84 HLRTest_DrawablePolyEdgeTool::DisplayHidden () const
85 { return myDispHid; }
86
87 //=======================================================================
88 //function : Debug
89 //purpose  : 
90 //=======================================================================
91
92 inline void
93 HLRTest_DrawablePolyEdgeTool::Debug(const Standard_Boolean B)
94 { myDebug = B; }
95
96 //=======================================================================
97 //function : Debug
98 //purpose  : 
99 //=======================================================================
100
101 inline Standard_Boolean 
102 HLRTest_DrawablePolyEdgeTool::Debug () const
103 { return myDebug; }
104