Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepGeom / StepGeom_PointReplica.cdl
CommitLineData
7fd59977 1-- File: PointReplica.cdl
2-- Created: Fri Dec 1 11:11:25 1995
3-- Author: EXPRESS->CDL V0.2 Translator
4-- Copyright: Matra-Datavision 1993
5
6
7class PointReplica from StepGeom
8
9inherits Point from StepGeom
10
11uses
12
13 CartesianTransformationOperator from StepGeom,
14 HAsciiString from TCollection
15is
16
17 Create returns mutable PointReplica;
18 ---Purpose: Returns a PointReplica
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 aParentPt : mutable Point from StepGeom;
27 aTransformation : mutable CartesianTransformationOperator from StepGeom) is virtual;
28
29 -- Specific Methods for Field Data Access --
30
31 SetParentPt(me : mutable; aParentPt : mutable Point);
32 ParentPt (me) returns mutable Point;
33 SetTransformation(me : mutable; aTransformation : mutable CartesianTransformationOperator);
34 Transformation (me) returns mutable CartesianTransformationOperator;
35
36fields
37
38 parentPt : Point from StepGeom;
39 transformation : CartesianTransformationOperator from StepGeom;
40
41end PointReplica;