blob: 9205e192f657b8a49d4376d42b4dc4f92397b17a (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
// File: HLRBRep_VertexList.cxx
// Created: Thu Apr 17 21:25:08 1997
// Author: Christophe MARION
// <cma@partox.paris1.matra-dtv.fr>
#ifndef No_Exception
#define No_Exception
#endif
#include <HLRBRep_VertexList.ixx>
#include <Standard_NoMoreObject.hxx>
#include <Standard_NoSuchObject.hxx>
#include <Standard_DomainError.hxx>
//=======================================================================
//function : HLRBRep_VertexList
//purpose :
//=======================================================================
HLRBRep_VertexList::
HLRBRep_VertexList(const HLRBRep_EdgeInterferenceTool& T,
const HLRAlgo_ListIteratorOfInterferenceList& I) :
myIterator(I),
myTool(T),
fromEdge(Standard_False),
fromInterf(Standard_False)
{
myTool.InitVertices();
Next();
}
//=======================================================================
//function : IsPeriodic
//purpose :
//=======================================================================
Standard_Boolean HLRBRep_VertexList::IsPeriodic()const
{
return myTool.IsPeriodic();
}
//=======================================================================
//function : More
//purpose :
//=======================================================================
Standard_Boolean HLRBRep_VertexList::More()const
{
return (fromEdge || fromInterf);
}
//=======================================================================
//function : Next
//purpose :
//=======================================================================
void HLRBRep_VertexList::Next()
{
if (fromInterf)
myIterator.Next();
if (fromEdge)
myTool.NextVertex();
fromInterf = myIterator.More();
fromEdge = myTool.MoreVertices();
if (fromEdge && fromInterf) {
if (!myTool.SameVertexAndInterference( myIterator.Value())) {
if (myTool.CurrentParameter() <
myTool.ParameterOfInterference(myIterator.Value())) {
fromInterf = Standard_False;
}
else {
fromEdge = Standard_False;
}
}
}
}
//=======================================================================
//function : Current
//purpose :
//=======================================================================
const HLRAlgo_Intersection & HLRBRep_VertexList::Current() const
{
if (fromEdge)
return myTool.CurrentVertex();
else if (fromInterf)
return myIterator.Value().Intersection();
else
Standard_NoSuchObject::Raise("HLRBRep_VertexList::Current");
return myTool.CurrentVertex(); // only for WNT.
}
//=======================================================================
//function : IsBoundary
//purpose :
//=======================================================================
Standard_Boolean HLRBRep_VertexList::IsBoundary() const
{
return fromEdge;
}
//=======================================================================
//function : IsInterference
//purpose :
//=======================================================================
Standard_Boolean HLRBRep_VertexList::IsInterference() const
{
return fromInterf;
}
//=======================================================================
//function : Orientation
//purpose :
//=======================================================================
TopAbs_Orientation HLRBRep_VertexList::Orientation() const
{
if (fromEdge)
return myTool.CurrentOrientation();
else
Standard_DomainError::Raise("HLRBRep_VertexList::Orientation");
return TopAbs_EXTERNAL; // only for WNT.
}
//=======================================================================
//function : Transition
//purpose :
//=======================================================================
TopAbs_Orientation HLRBRep_VertexList::Transition() const
{
if (fromInterf)
return myIterator.Value().Transition();
else
Standard_DomainError::Raise("HLRBRep_VertexList::Transition");
return TopAbs_EXTERNAL; // only for WNT.
}
//=======================================================================
//function : BoundaryTransition
//purpose :
//=======================================================================
TopAbs_Orientation HLRBRep_VertexList::BoundaryTransition() const
{
if (fromInterf)
return myIterator.Value().BoundaryTransition();
else
Standard_DomainError::Raise("HLRBRep_VertexList::BoundaryTransition");
return TopAbs_EXTERNAL; // only for WNT.
}
|