blob: d61f2adb71fc8e24f78f3e4d715b2fdf7d505823 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
// File: HLRAlgo_EdgeIterator.lxx
// Created: Mon Jan 11 13:58:26 1993
// Author: Christophe MARION
// <cma@sdsun1>
#include <HLRAlgo_EdgeStatus.hxx>
//=======================================================================
//function : MoreHidden
//purpose :
//=======================================================================
inline Standard_Boolean HLRAlgo_EdgeIterator::MoreHidden () const
{ return iHid <= myNbHid + 1; }
//=======================================================================
//function : Hidden
//purpose :
//=======================================================================
inline void
HLRAlgo_EdgeIterator::Hidden (Standard_Real& Start,
Standard_ShortReal& TolStart,
Standard_Real& End ,
Standard_ShortReal& TolEnd) const
{
Start = myHidStart;
TolStart = myHidTolStart;
End = myHidEnd;
TolEnd = myHidTolEnd;
}
//=======================================================================
//function : InitVisible
//purpose :
//=======================================================================
inline void
HLRAlgo_EdgeIterator::InitVisible (const HLRAlgo_EdgeStatus& status)
{
EVis = (Standard_Address)&status;
iVis = 1;
myNbVis = ((HLRAlgo_EdgeStatus*)EVis)->NbVisiblePart();
}
//=======================================================================
//function : MoreVisible
//purpose :
//=======================================================================
inline Standard_Boolean HLRAlgo_EdgeIterator::MoreVisible () const
{ return iVis <= myNbVis; }
//=======================================================================
//function : NextVisible
//purpose :
//=======================================================================
inline void HLRAlgo_EdgeIterator::NextVisible ()
{ iVis++; }
//=======================================================================
//function : Visible
//purpose :
//=======================================================================
inline void
HLRAlgo_EdgeIterator::Visible (Standard_Real& Start,
Standard_ShortReal& TolStart,
Standard_Real& End ,
Standard_ShortReal& TolEnd)
{
((HLRAlgo_EdgeStatus*)EVis)->VisiblePart
(iVis,Start,TolStart,End,TolEnd);
}
|