summaryrefslogtreecommitdiff
path: root/inc/DrawTrSurf_BSplineCurve2d.lxx
blob: dc622a9263ef408c2c8b1c8fe3d06b7445e61844 (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
 
  inline void DrawTrSurf_BSplineCurve2d::SetPolesColor (
  const Draw_Color& aColor) {

     polesLook = aColor;    
  }


  inline void DrawTrSurf_BSplineCurve2d::SetKnotsColor (
  const Draw_Color& aColor) {

     knotsLook = aColor;    
  }


  inline void DrawTrSurf_BSplineCurve2d::SetKnotsShape (
  const Draw_MarkerShape Shape) {

     knotsForm = Shape;    
  }


  inline Draw_MarkerShape DrawTrSurf_BSplineCurve2d::KnotsShape () const {

     return knotsForm; 
  }


  inline Draw_Color DrawTrSurf_BSplineCurve2d::KnotsColor () const {

     return knotsLook; 
  }


  inline Draw_Color DrawTrSurf_BSplineCurve2d::PolesColor () const {

     return polesLook; 
  }