blob: 1bb46ee14100ac4cee17c611337026fa9fb505fb (
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
|
-- File: BOPTools_ESInterference.cdl
-- Created: Tue Nov 21 15:35:03 2000
-- Author: Peter KURNEV
-- <pkv@irinox>
---Copyright: Matra Datavision 2000
class ESInterference from BOPTools
inherits ShapeShapeInterference from BOPTools
---Purpose: class for storing an Edge/Face
--- interference
---
uses
CommonPrt from IntTools
is
Create
returns ESInterference from BOPTools;
---Purpose:
--- Empty constructor
---
Create (anIndex1: Integer from Standard;
anIndex2: Integer from Standard;
aCPart:CommonPrt from IntTools)
returns ESInterference from BOPTools;
---Purpose:
--- Constructor
--- anIndex1,
--- anIndex2 see BOPTools_ShapeShapeInterference for details
--- aCPart see IntTools_CommonPrt for details
---
CommonPrt(me)
returns CommonPrt from IntTools;
---C++: return const &
---Purpose:
--- Selector
---
fields
myCommonPart: CommonPrt from IntTools;
end ESInterference;
|