0022627: Change OCCT memory management defaults
[occt.git] / src / DrawTrSurf / DrawTrSurf_Surface.lxx
1
2
3   inline Handle(Geom_Surface) DrawTrSurf_Surface::GetSurface () const {
4      return surf;
5   }
6
7
8   inline Draw_Color DrawTrSurf_Surface::BoundsColor () const  { 
9     return boundsLook;
10   }
11
12
13   inline Draw_Color DrawTrSurf_Surface::IsosColor () const  { 
14     return isosLook;
15   }
16
17
18   inline void DrawTrSurf_Surface::SetIsosColor (const Draw_Color& aColor)  {
19
20      isosLook = aColor;
21   }
22
23   inline void DrawTrSurf_Surface::SetBoundsColor (const Draw_Color& aColor)  {
24
25      boundsLook = aColor;
26   }
27
28
29
30   inline void DrawTrSurf_Surface::NbIsos (Standard_Integer& Nu, Standard_Integer& Nv) const {
31
32     Nu = nbUIsos;
33     Nv = nbVIsos;
34   }