blob: a2c3e3a0a002224b077a3248d9916dc1ac533969 (
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
|
-- File: BOPTools_Pave.cdl
-- Created: Thu Feb 8 12:26:04 2001
-- Author: Peter KURNEV
-- <pkv@irinox>
---Copyright: Matra Datavision 2001
class Pave from BOPTools
---Purpose:
-- Class for storing info about a vertex on an edge
uses
KindOfInterference from BooleanOperations
is
Create
returns Pave from BOPTools;
---Purpose:
--- Empty constructor
---
Create (Index: Integer from Standard;
aParam:Real from Standard;
aType: KindOfInterference from BooleanOperations
=BooleanOperations_UnknownInterference)
returns Pave from BOPTools;
---Purpose:
--- Constructor
--- Index - DS-index of the vertex
--- aParam - value of the parameter of the vertex on an edge
--- aType - the type of interference from which the pave comes from
---
SetParam (me:out; aParam:Real from Standard);
---Purpose:
--- Modifier
---
SetIndex (me:out; Index: Integer from Standard);
---Purpose:
--- Modifier
---
SetType (me:out; aType:KindOfInterference from BooleanOperations);
---Purpose:
--- Modifier
---
SetInterference (me:out; Index: Integer from Standard);
---Purpose:
--- Modifier
--- Sets the index of the interference in corresponding table
---
Param (me)
returns Real from Standard;
---Purpose:
--- Selector
---
Index (me)
returns Integer from Standard;
---Purpose:
--- Selector
---
Type (me)
returns KindOfInterference from BooleanOperations;
---Purpose:
--- Selector
---
Interference(me)
returns Integer from Standard;
---Purpose:
--- Selector
---
IsEqual(me; Other:Pave from BOPTools)
returns Boolean from Standard;
---Purpose:
--- Returns TRUE if <Other>==me
---
fields
myParam: Real from Standard;
myIndex: Integer from Standard;
myType : KindOfInterference from BooleanOperations;
myInterf: Integer from Standard;
end Pave;
|