blob: 345c53e3f9c3dc4dcc49e5a00e20aad770e1a902 (
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
46
47
48
|
-- File: FaceSurface.cdl
-- Created: Fri Dec 1 11:11:20 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class FaceSurface from StepShape
inherits Face from StepShape
-- WARNING : Multiple EXPRESS inheritance
-- Not yet automaticly managed
-- inherits GeometricRepresentationItem from StepShape
uses
Surface from StepGeom,
Boolean from Standard,
HAsciiString from TCollection,
HArray1OfFaceBound from StepShape
is
Create returns mutable FaceSurface;
---Purpose: Returns a FaceSurface
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBounds : mutable HArray1OfFaceBound from StepShape) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBounds : mutable HArray1OfFaceBound from StepShape;
aFaceGeometry : mutable Surface from StepGeom;
aSameSense : Boolean from Standard) is virtual;
-- Specific Methods for Field Data Access --
SetFaceGeometry(me : mutable; aFaceGeometry : mutable Surface);
FaceGeometry (me) returns mutable Surface;
SetSameSense(me : mutable; aSameSense : Boolean);
SameSense (me) returns Boolean;
fields
faceGeometry : Surface from StepGeom;
sameSense : Boolean from Standard;
end FaceSurface;
|