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

     polesLook = aColor;    
  }


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

     knotsLook = aColor;    
  }


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

     knotsForm = Shape;    
  }


  inline Draw_MarkerShape DrawTrSurf_BSplineCurve::KnotsShape () const {

     return knotsForm; 
  }


  inline Draw_Color DrawTrSurf_BSplineCurve::KnotsColor () const {

     return knotsLook; 
  }


  inline Draw_Color DrawTrSurf_BSplineCurve::PolesColor () const {

     return polesLook; 
  }