blob: 5bed0915dad1b7c4ec99f3a774b63bb271d4e968 (
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
|
-- File: Direction.cdl
-- Created: Fri Dec 1 11:11:19 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class Direction from StepGeom
inherits GeometricRepresentationItem from StepGeom
uses
HArray1OfReal from TColStd,
Real from Standard,
HAsciiString from TCollection
is
Create returns mutable Direction;
---Purpose: Returns a Direction
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aDirectionRatios : mutable HArray1OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetDirectionRatios(me : mutable; aDirectionRatios : mutable HArray1OfReal);
DirectionRatios (me) returns mutable HArray1OfReal;
DirectionRatiosValue (me; num : Integer) returns Real;
NbDirectionRatios (me) returns Integer;
fields
directionRatios : HArray1OfReal from TColStd;
end Direction;
|