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