blob: 39a00f256bee1acd28a73b9a9e6c83d44c7aa14a (
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
|
-- File: PointOnCurve.cdl
-- Created: Fri Dec 1 11:11:24 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class PointOnCurve from StepGeom
inherits Point from StepGeom
uses
Curve from StepGeom,
Real from Standard,
HAsciiString from TCollection
is
Create returns mutable PointOnCurve;
---Purpose: Returns a PointOnCurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisCurve : mutable Curve from StepGeom;
aPointParameter : Real from Standard) is virtual;
-- Specific Methods for Field Data Access --
SetBasisCurve(me : mutable; aBasisCurve : mutable Curve);
BasisCurve (me) returns mutable Curve;
SetPointParameter(me : mutable; aPointParameter : Real);
PointParameter (me) returns Real;
fields
basisCurve : Curve from StepGeom;
pointParameter : Real from Standard;
end PointOnCurve;
|