blob: b148e3c4bcf6dcf26a66b8c52d25bccc42eac299 (
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
|
-- File: TopOpeBRepBuild_PaveSet.cdl
-- Created: Tue Jun 15 20:02:14 1993
-- Author: Jean Yves LEBEY
-- <jyl@zerox>
---Copyright: Matra Datavision 1993
class PaveSet from TopOpeBRepBuild
inherits LoopSet from TopOpeBRepBuild
---Purpose:
-- class providing an exploration of a set of vertices to build edges.
-- It is similar to LoopSet from TopOpeBRepBuild where Loop is Pave.
uses
Shape from TopoDS,
Edge from TopoDS,
Loop from TopOpeBRepBuild,
Pave from TopOpeBRepBuild,
ListOfPave from TopOpeBRepBuild,
ListIteratorOfListOfPave from TopOpeBRepBuild
is
Create(E : Shape from TopoDS) returns PaveSet from TopOpeBRepBuild;
---Purpose: Create a Pave set on edge <E>. It contains <E> vertices.
RemovePV(me:in out; B : Boolean); -- particular case B = T/F : try/don't try
-- to remove Pave in Prepare() (T by default)
Append(me : in out; PV : Pave from TopOpeBRepBuild) is static;
---Purpose: Add <PV> in the Pave set.
-- === start signature LoopSet
InitLoop(me : in out) is redefined;
MoreLoop(me) returns Boolean is redefined;
NextLoop(me : in out) is redefined;
Loop(me) returns Loop from TopOpeBRepBuild is redefined;
---C++: return const &
-- === end signature LoopSet
Edge(me) returns Edge from TopoDS is static;
---C++: return const &
HasEqualParameters(me : in out) returns Boolean is static;
EqualParameters(me) returns Real is static;
ClosedVertices(me : in out) returns Boolean is static;
Prepare(me : in out) is static private;
SortPave(myclass; Lin:ListOfPave; Lout:out ListOfPave);
fields
myEdge : Edge from TopoDS;
myVertices : ListOfPave from TopOpeBRepBuild;
myVerticesIt : ListIteratorOfListOfPave from TopOpeBRepBuild;
myEdgeVertexIndex : Integer from Standard;
myEdgeVertexCount : Integer from Standard;
myHasEqualParameters : Boolean from Standard;
myEqualParameters : Real from Standard;
myClosed : Boolean from Standard;
myPrepareDone : Boolean from Standard;
myRemovePV : Boolean;
end PaveSet from TopOpeBRepBuild;
|