blob: 019ebc103e3080e7d0528f8192158afe517a7be2 (
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_BSplineSurface::SetKnotsColor (
const Draw_Color& aColor) {
knotsLook = aColor;
}
inline void DrawTrSurf_BSplineSurface::SetKnotsShape (
const Draw_MarkerShape Shape) {
knotsForm = Shape;
}
inline void DrawTrSurf_BSplineSurface::SetPolesColor (
const Draw_Color& aColor) {
polesLook = aColor;
}
inline Draw_MarkerShape DrawTrSurf_BSplineSurface::KnotsShape () const {
return knotsForm;
}
inline Draw_Color DrawTrSurf_BSplineSurface::KnotsColor () const {
return knotsLook;
}
inline Draw_Color DrawTrSurf_BSplineSurface::PolesColor () const {
return polesLook;
}
|