blob: 16855c48d825576a986c48cd18331a851faabd04 (
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
|
-- File: TopOpeBRepDS_PointExplorer.cdl
-- Created: Fri Dec 8 19:30:36 1995
-- Author: Jean Yves LEBEY
-- <jyl@meteox>
---Copyright: Matra Datavision 1995
class PointExplorer from TopOpeBRepDS
uses
DataStructure from TopOpeBRepDS,
Point from TopOpeBRepDS
is
Create returns PointExplorer from TopOpeBRepDS;
Create(DS : DataStructure from TopOpeBRepDS;
FindOnlyKeep : Boolean from Standard = Standard_True)
returns PointExplorer from TopOpeBRepDS;
Init(me : in out; DS : DataStructure from TopOpeBRepDS;
FindOnlyKeep : Boolean from Standard = Standard_True) is static;
More(me) returns Boolean is static;
Next(me : in out) is static;
Point(me) returns Point from TopOpeBRepDS
---C++: return const &
is static;
IsPoint(me; I : Integer )
returns Boolean is static;
IsPointKeep(me; I : Integer ) returns Boolean is static;
Point(me; I : Integer )
returns Point from TopOpeBRepDS
---C++: return const &
is static;
NbPoint(me : in out) returns Integer
is static;
Index(me) returns Integer
is static;
Find(me : in out) is static private;
fields
myIndex : Integer ;
myMax : Integer ;
myDS : Address ; -- (TopOpeBRepDS_DataStructure*)
myFound : Boolean ;
myEmpty : Point from TopOpeBRepDS;
myFindKeep : Boolean;
end PointExplorer from TopOpeBRepDS;
|