blob: 76549c93a199fa24aecf8ae629ed97c410443ac3 (
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
|
-- File: BOPTools_Interference.cdl
-- Created: Tue Nov 21 11:28:00 2000
-- Author: Peter KURNEV
-- <pkv@irinox>
---Copyright: Matra Datavision 2000
class Interference from BOPTools
---Purpose: class for storing information about an interference
--- that takes place between given shape and shape
--- with DS-index =aWith
uses
KindOfInterference from BooleanOperations
is
Create
returns Interference from BOPTools;
---Purpose:
--- Empty constructor
---
Create (aWith :Integer from Standard;
aType :KindOfInterference from BooleanOperations;
anIndex :Integer from Standard)
returns Interference from BOPTools;
---Purpose: constructor
--- aWith - DS-index for the opposite shape
--- aType - the type of the interference
--- anIndex- the index of the result in corresponding
--- interference table (if the result is computed
--- but there is no result -> anIndex=0)
---
SetWith (me:out; aWith :Integer from Standard);
---Purpose:
--- Modifier
---
SetType (me:out; aType : KindOfInterference from BooleanOperations);
---Purpose:
--- Modifier
---
SetIndex (me:out; anIndex :Integer from Standard);
---Purpose:
--- Modifier
---
With (me)
returns Integer from Standard;
---Purpose:
--- Selector
---
Type (me)
returns KindOfInterference from BooleanOperations;
---Purpose:
--- Selector
---
Index (me)
returns Integer from Standard;
---Purpose:
--- Selector
---
fields
myWith : Integer from Standard;
myType : KindOfInterference from BooleanOperations;
myIndex : Integer from Standard; --< index in corresp.interference table
end Interference;
|