blob: 86c31bddb7680579b3c96ace544c4e5c2dfe167f (
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
|
-- File: StepGeom_OrientedSurface.cdl
-- Created: Fri Jan 4 17:42:44 2002
-- Author: data exchange team
-- Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.1
-- Copyright: Matra Datavision 2000
class OrientedSurface from StepGeom
inherits Surface from StepGeom
---Purpose: Representation of STEP entity OrientedSurface
uses
HAsciiString from TCollection
is
Create returns OrientedSurface from StepGeom;
---Purpose: Empty constructor
Init (me: mutable; aRepresentationItem_Name: HAsciiString from TCollection;
aOrientation: Boolean);
---Purpose: Initialize all fields (own and inherited)
Orientation (me) returns Boolean;
---Purpose: Returns field Orientation
SetOrientation (me: mutable; Orientation: Boolean);
---Purpose: Set field Orientation
fields
theOrientation: Boolean;
end OrientedSurface;
|