blob: eed98743bd2a8cb59f0461cc5a961ff046d949c6 (
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
55
56
57
58
59
60
61
62
63
64
|
-- File: BSplineCurve.cdl
-- Created: Fri Dec 1 11:11:14 1995
-- Author: EXPRESS->CDL V0.2 Translator
-- Copyright: Matra-Datavision 1993
class BSplineCurve from StepGeom
inherits BoundedCurve from StepGeom
-- N.B : EXPRESS Complexe SUBTYPE Declaration :
-- ANDOR ( ONEOF ( uniform_curve b_spline_curve_with_knots quasi_uniform_curve bezier_curve ) rational_b_spline_curve )
uses
Integer from Standard,
HArray1OfCartesianPoint from StepGeom,
BSplineCurveForm from StepGeom,
Logical from StepData,
CartesianPoint from StepGeom,
HAsciiString from TCollection
is
Create returns mutable BSplineCurve;
---Purpose: Returns a BSplineCurve
Init (me : mutable;
aName : mutable HAsciiString from TCollection) 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) is virtual;
-- Specific Methods for Field Data Access --
SetDegree(me : mutable; aDegree : Integer);
Degree (me) returns Integer;
SetControlPointsList(me : mutable; aControlPointsList : mutable HArray1OfCartesianPoint);
ControlPointsList (me) returns mutable HArray1OfCartesianPoint;
ControlPointsListValue (me; num : Integer) returns mutable CartesianPoint;
NbControlPointsList (me) returns Integer;
SetCurveForm(me : mutable; aCurveForm : BSplineCurveForm);
CurveForm (me) returns BSplineCurveForm;
SetClosedCurve(me : mutable; aClosedCurve : Logical);
ClosedCurve (me) returns Logical;
SetSelfIntersect(me : mutable; aSelfIntersect : Logical);
SelfIntersect (me) returns Logical;
fields
degree : Integer from Standard;
controlPointsList : HArray1OfCartesianPoint from StepGeom;
curveForm : BSplineCurveForm from StepGeom; -- an Enumeration
closedCurve : Logical from StepData;
selfIntersect : Logical from StepData;
end BSplineCurve;
|