blob: 5a538d9c0bbc706d90dad35edade9adf8667d4d1 (
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
|
-- File: EvaluatedDegeneratePcurve.cdl
-- Created: Fri Dec 1 11:11:19 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class EvaluatedDegeneratePcurve from StepGeom
inherits DegeneratePcurve from StepGeom
uses
CartesianPoint from StepGeom,
HAsciiString from TCollection,
Surface from StepGeom,
DefinitionalRepresentation from StepRepr
is
Create returns mutable EvaluatedDegeneratePcurve;
---Purpose: Returns a EvaluatedDegeneratePcurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisSurface : mutable Surface from StepGeom;
aReferenceToCurve : mutable DefinitionalRepresentation from StepRepr) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aBasisSurface : mutable Surface from StepGeom;
aReferenceToCurve : mutable DefinitionalRepresentation from StepRepr;
aEquivalentPoint : mutable CartesianPoint from StepGeom) is virtual;
-- Specific Methods for Field Data Access --
SetEquivalentPoint(me : mutable; aEquivalentPoint : mutable CartesianPoint);
EquivalentPoint (me) returns mutable CartesianPoint;
fields
equivalentPoint : CartesianPoint from StepGeom;
end EvaluatedDegeneratePcurve;
|