blob: c6160e54d2cbafe6e7ed6c437a5362b189c41f7a (
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
|
-- File: Axis1Placement.cdl
-- Created: Fri Dec 1 11:11:14 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class Axis1Placement from StepGeom
inherits Placement from StepGeom
uses
Direction from StepGeom,
Boolean from Standard,
HAsciiString from TCollection,
CartesianPoint from StepGeom
is
Create returns mutable Axis1Placement;
---Purpose: Returns a Axis1Placement
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aLocation : mutable CartesianPoint from StepGeom) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aLocation : mutable CartesianPoint from StepGeom;
hasAaxis : Boolean from Standard;
aAxis : mutable Direction from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetAxis(me : mutable; aAxis : mutable Direction);
UnSetAxis (me:mutable);
Axis (me) returns mutable Direction;
HasAxis (me) returns Boolean;
fields
axis : Direction from StepGeom; -- OPTIONAL can be NULL
hasAxis : Boolean from Standard;
end Axis1Placement;
|