Integration of OCCT 6.5.0 from SVN
[occt.git] / src / DrawTrSurf / DrawTrSurf_BSplineCurve2d.lxx
1  
2   inline void DrawTrSurf_BSplineCurve2d::SetPolesColor (
3   const Draw_Color& aColor) {
4
5      polesLook = aColor;    
6   }
7
8
9   inline void DrawTrSurf_BSplineCurve2d::SetKnotsColor (
10   const Draw_Color& aColor) {
11
12      knotsLook = aColor;    
13   }
14
15
16   inline void DrawTrSurf_BSplineCurve2d::SetKnotsShape (
17   const Draw_MarkerShape Shape) {
18
19      knotsForm = Shape;    
20   }
21
22
23   inline Draw_MarkerShape DrawTrSurf_BSplineCurve2d::KnotsShape () const {
24
25      return knotsForm; 
26   }
27
28
29   inline Draw_Color DrawTrSurf_BSplineCurve2d::KnotsColor () const {
30
31      return knotsLook; 
32   }
33
34
35   inline Draw_Color DrawTrSurf_BSplineCurve2d::PolesColor () const {
36
37      return polesLook; 
38   }
39