blob: a6e5aaecedc9d7cac02bfffe261a9951b64e6ba3 (
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
|
-- File: HLRAlgo_TriangleData.cdl
-- Created: Fri Oct 29 15:19:08 1993
-- Author: Christophe MARION
-- <cma@nonox>
---Copyright: Matra Datavision 1993
class TriangleData from HLRAlgo
uses
Address from Standard,
Integer from Standard,
Boolean from Standard
is
Create returns TriangleData from HLRAlgo;
---C++: inline
Indices(me) returns Address from Standard
---C++: inline
is static;
fields
myIndices : Integer from Standard[4];
end TriangleData;
|