blob: 2afb7f193b15255c35dba70c08f9f2adc6b41126 (
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
50
51
52
53
54
|
-- File: RationalBSplineCurve.cdl
-- Created: Fri Dec 1 11:11:26 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class RationalBSplineCurve from StepGeom
inherits BSplineCurve from StepGeom
uses
HArray1OfReal from TColStd,
Real from Standard,
HAsciiString from TCollection,
Integer from Standard,
HArray1OfCartesianPoint from StepGeom,
BSplineCurveForm from StepGeom,
Logical from StepData
is
Create returns mutable RationalBSplineCurve;
---Purpose: Returns a RationalBSplineCurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aDegree : Integer from Standard;
aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
aCurveForm : BSplineCurveForm from StepGeom;
aClosedCurve : Logical from StepData;
aSelfIntersect : Logical from StepData;
aWeightsData : mutable HArray1OfReal from TColStd) is virtual;
-- Specific Methods for Field Data Access --
SetWeightsData(me : mutable; aWeightsData : mutable HArray1OfReal);
WeightsData (me) returns mutable HArray1OfReal;
WeightsDataValue (me; num : Integer) returns Real;
NbWeightsData (me) returns Integer;
fields
weightsData : HArray1OfReal from TColStd;
end RationalBSplineCurve;
|