0024057: Eliminate compiler warning C4100 in MSVC++ with warning level 4
[occt.git] / src / StepGeom / StepGeom_BezierCurveAndRationalBSplineCurve.cdl
CommitLineData
b311480e 1-- Created on: 1995-12-01
2-- Created by: EXPRESS->CDL V0.2 Translator
3-- Copyright (c) 1995-1999 Matra Datavision
4-- Copyright (c) 1999-2012 OPEN CASCADE SAS
5--
6-- The content of this file is subject to the Open CASCADE Technology Public
7-- License Version 6.5 (the "License"). You may not use the content of this file
8-- except in compliance with the License. Please obtain a copy of the License
9-- at http://www.opencascade.org and read it completely before using this file.
10--
11-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13--
14-- The Original Code and all software distributed under the License is
15-- distributed on an "AS IS" basis, without warranty of any kind, and the
16-- Initial Developer hereby disclaims all such warranties, including without
17-- limitation, any warranties of merchantability, fitness for a particular
18-- purpose or non-infringement. Please see the License for the specific terms
19-- and conditions governing the rights and limitations under the License.
20
7fd59977 21
22
23class BezierCurveAndRationalBSplineCurve from StepGeom
24
25inherits BSplineCurve from StepGeom
26
27
28 --- This classe is an implementation of EXPRESS
29 -- ANDOR Subtype Declaration.
30uses
31
32 BezierCurve from StepGeom,
33 RationalBSplineCurve from StepGeom,
34 HAsciiString from TCollection,
35 Integer from Standard,
36 HArray1OfCartesianPoint from StepGeom,
37 BSplineCurveForm from StepGeom,
38 Logical from StepData,
39 HArray1OfReal from TColStd,
40 Real from Standard
41is
42
43 Create returns mutable BezierCurveAndRationalBSplineCurve;
44 ---Purpose: Returns a BezierCurveAndRationalBSplineCurve
45
46
47 Init (me : mutable;
48 aName : mutable HAsciiString from TCollection;
49 aDegree : Integer from Standard;
50 aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
51 aCurveForm : BSplineCurveForm from StepGeom;
52 aClosedCurve : Logical from StepData;
53 aSelfIntersect : Logical from StepData) is redefined;
54
55 Init (me : mutable;
56 aName : mutable HAsciiString from TCollection;
57 aDegree : Integer from Standard;
58 aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
59 aCurveForm : BSplineCurveForm from StepGeom;
60 aClosedCurve : Logical from StepData;
61 aSelfIntersect : Logical from StepData;
62 aBezierCurve : mutable BezierCurve from StepGeom;
63 aRationalBSplineCurve : mutable RationalBSplineCurve from StepGeom) is virtual;
64
65 Init (me : mutable;
66 aName : mutable HAsciiString from TCollection;
67 aDegree : Integer from Standard;
68 aControlPointsList : mutable HArray1OfCartesianPoint from StepGeom;
69 aCurveForm : BSplineCurveForm from StepGeom;
70 aClosedCurve : Logical from StepData;
71 aSelfIntersect : Logical from StepData;
72 aWeightsData : mutable HArray1OfReal from TColStd) is virtual;
73
74 -- Specific Methods for Field Data Access --
75
76 SetBezierCurve(me : mutable; aBezierCurve : mutable BezierCurve);
77 BezierCurve (me) returns mutable BezierCurve;
78 SetRationalBSplineCurve(me : mutable; aRationalBSplineCurve : mutable RationalBSplineCurve);
79 RationalBSplineCurve (me) returns mutable RationalBSplineCurve;
80
81 -- Specific Methods for ANDOR Field Data Access --
82
83
84 -- Specific Methods for ANDOR Field Data Access --
85
86 SetWeightsData(me : mutable; aWeightsData : mutable HArray1OfReal);
87 WeightsData (me) returns mutable HArray1OfReal;
88 WeightsDataValue (me; num : Integer) returns Real;
89 NbWeightsData (me) returns Integer;
90
91fields
92
93 bezierCurve : BezierCurve from StepGeom;
94 rationalBSplineCurve : RationalBSplineCurve from StepGeom;
95
96end BezierCurveAndRationalBSplineCurve;