Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepGeom / StepGeom_ElementarySurface.cdl
CommitLineData
7fd59977 1-- File: ElementarySurface.cdl
2-- Created: Fri Dec 1 11:11:19 1995
3-- Author: EXPRESS->CDL V0.2 Translator
4-- Copyright: Matra-Datavision 1993
5
6
7class ElementarySurface from StepGeom
8
9inherits Surface from StepGeom
10
11uses
12
13 Axis2Placement3d from StepGeom,
14 HAsciiString from TCollection
15is
16
17 Create returns mutable ElementarySurface;
18 ---Purpose: Returns a ElementarySurface
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 aPosition : mutable Axis2Placement3d from StepGeom) is virtual;
27
28 -- Specific Methods for Field Data Access --
29
30 SetPosition(me : mutable; aPosition : mutable Axis2Placement3d);
31 Position (me) returns mutable Axis2Placement3d;
32
33fields
34
35 position : Axis2Placement3d from StepGeom;
36
37end ElementarySurface;