Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepGeom / StepGeom_Placement.cdl
CommitLineData
7fd59977 1-- File: Placement.cdl
2-- Created: Fri Dec 1 11:11:24 1995
3-- Author: EXPRESS->CDL V0.2 Translator
4-- Copyright: Matra-Datavision 1993
5
6
7class Placement from StepGeom
8
9inherits GeometricRepresentationItem from StepGeom
10
11uses
12
13 CartesianPoint from StepGeom,
14 HAsciiString from TCollection
15is
16
17 Create returns mutable Placement;
18 ---Purpose: Returns a Placement
19
20
21 Init (me : mutable;
22 aName : mutable HAsciiString from TCollection) is redefined;
23
24 Init (me : mutable;
25 aName : mutable HAsciiString from TCollection;
26 aLocation : mutable CartesianPoint from StepGeom) is virtual;
27
28 -- Specific Methods for Field Data Access --
29
30 SetLocation(me : mutable; aLocation : mutable CartesianPoint);
31 Location (me) returns mutable CartesianPoint;
32
33fields
34
35 location : CartesianPoint from StepGeom;
36
37end Placement;