0022623: Use of uninitialized variables in HLRBRep_Curve::UpdateMinMax in debug mode
[occt.git] / src / HLRAlgo / HLRAlgo_PolyAlgo.lxx
CommitLineData
733a0e55
S
1// File: HLRAlgo_PolyAlgo.lxx
2// Created: Tue Jun 20 11:50:07 1995
3// Author: Christophe MARION
4// Copyright: OPEN CASCADE 2000
7fd59977 5
6#include <TColStd_HArray1OfTransient.hxx>
7
8//=======================================================================
9//function : PolyShell
10//purpose :
11//=======================================================================
12
13inline TColStd_Array1OfTransient & HLRAlgo_PolyAlgo::PolyShell () const
14{ return myHShell->ChangeArray1(); }
15
16//=======================================================================
17//function : InitHide
18//purpose :
19//=======================================================================
20
21inline void HLRAlgo_PolyAlgo::InitHide ()
22{
23 myCurShell = 0;
24 NextHide();
25}
26
27//=======================================================================
28//function : MoreHide
29//purpose :
30//=======================================================================
31
32inline Standard_Boolean HLRAlgo_PolyAlgo::MoreHide () const
33{ return myFound; }
34
35//=======================================================================
36//function : InitShow
37//purpose :
38//=======================================================================
39
40inline void HLRAlgo_PolyAlgo::InitShow ()
41{
42 myCurShell = 0;
43 NextShow();
44}
45
46//=======================================================================
47//function : MoreShow
48//purpose :
49//=======================================================================
50
51inline Standard_Boolean HLRAlgo_PolyAlgo::MoreShow () const
52{ return myFound; }
53