blob: a20f9e80a245f8a32fe39278145a6143cc4ef2c1 (
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
49
|
-- File: SurfacePatch.cdl
-- Created: Fri Dec 1 11:11:28 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class SurfacePatch from StepGeom
inherits TShared from MMgt
uses
BoundedSurface from StepGeom,
TransitionCode from StepGeom,
Boolean from Standard
is
Create returns mutable SurfacePatch;
---Purpose: Returns a SurfacePatch
Init (me : mutable;
aParentSurface : mutable BoundedSurface from StepGeom;
aUTransition : TransitionCode from StepGeom;
aVTransition : TransitionCode from StepGeom;
aUSense : Boolean from Standard;
aVSense : Boolean from Standard) is virtual;
-- Specific Methods for Field Data Access --
SetParentSurface(me : mutable; aParentSurface : mutable BoundedSurface);
ParentSurface (me) returns mutable BoundedSurface;
SetUTransition(me : mutable; aUTransition : TransitionCode);
UTransition (me) returns TransitionCode;
SetVTransition(me : mutable; aVTransition : TransitionCode);
VTransition (me) returns TransitionCode;
SetUSense(me : mutable; aUSense : Boolean);
USense (me) returns Boolean;
SetVSense(me : mutable; aVSense : Boolean);
VSense (me) returns Boolean;
fields
parentSurface : BoundedSurface from StepGeom;
uTransition : TransitionCode from StepGeom; -- an Enumeration
vTransition : TransitionCode from StepGeom; -- an Enumeration
uSense : Boolean from Standard;
vSense : Boolean from Standard;
end SurfacePatch;
|