0022847: DrawTrSurf: provide interface for configuring visualization properties in...
[occt.git] / src / DrawTrSurf / DrawTrSurf_Drawable.lxx
1 // File:        DrawTrSurf_Drawable.lxx
2 // Created:     Tue Jul 16 09:22:58 1991
3 // Author:      Christophe MARION
4 //              <cma@sdsun1>
5
6
7
8
9    inline void DrawTrSurf_Drawable::SetDrawMode (
10    const Standard_Integer DrawMode) {
11
12      myDrawMode = DrawMode;
13    }
14
15
16    inline void DrawTrSurf_Drawable::SetDiscretisation (
17    const Standard_Integer Discret) {
18
19      myDiscret = Discret;
20    }
21
22
23    inline void DrawTrSurf_Drawable::SetDeflection (
24    const Standard_Real Deflection) {
25
26      myDeflection = Deflection;
27    }
28
29
30    inline Standard_Integer DrawTrSurf_Drawable::GetDiscretisation () const {
31
32      return myDiscret;
33    }
34
35    inline Standard_Integer DrawTrSurf_Drawable::GetDrawMode () const {
36
37      return myDrawMode;
38    }
39
40    inline Standard_Real DrawTrSurf_Drawable::GetDeflection () const {
41
42      return myDeflection;
43    }
44
45
46
47
48
49
50