blob: 70afa0911d5d1efdbd512deb818ddbed86a53599 (
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
|
-- File: HLRBRep_VertexList.cdl
-- Created: Thu Apr 17 20:04:00 1997
-- Author: Christophe MARION
-- <cma@partox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1997
class VertexList from HLRBRep
uses
Orientation from TopAbs,
Intersection from HLRAlgo,
Interference from HLRAlgo,
ListIteratorOfInterferenceList from HLRAlgo,
EdgeInterferenceTool from HLRBRep
is
Create(T : EdgeInterferenceTool from HLRBRep;
I : ListIteratorOfInterferenceList from HLRAlgo)
returns VertexList from HLRBRep;
IsPeriodic(me) returns Boolean from Standard
---Purpose: Returns True when the curve is periodic.
is static;
More(me) returns Boolean from Standard
---Purpose: Returns True when there are more vertices.
is static;
Next(me : in out)
---Purpose: Proceeds to the next vertex.
is static;
Current(me) returns Intersection from HLRAlgo
---Purpose: Returns the current vertex
--
---C++: return const &
is static;
IsBoundary(me) returns Boolean from Standard
---Purpose: Returns True if the current vertex is is on the
-- boundary of the edge.
is static;
IsInterference(me) returns Boolean from Standard
---Purpose: Returns True if the current vertex is an
-- interference.
is static;
Orientation(me) returns Orientation from TopAbs
---Purpose: Returns the orientation of the current vertex if
-- it is on the boundary of the edge.
is static;
Transition(me) returns Orientation from TopAbs
---Purpose: Returns the transition of the current vertex if
-- it is an interference.
is static;
BoundaryTransition(me) returns Orientation from TopAbs
---Purpose: Returns the transition of the current vertex
-- relative to the boundary if it is an interference.
is static;
fields
myIterator : ListIteratorOfInterferenceList from HLRAlgo;
myTool : EdgeInterferenceTool from HLRBRep;
fromEdge : Boolean from Standard;
fromInterf : Boolean from Standard;
end VertexList;
|