0024057: Eliminate compiler warning C4100 in MSVC++ with warning level 4
[occt.git] / src / StepGeom / StepGeom_BezierSurfaceAndRationalBSplineSurface.cdl
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
21
22
23 class BezierSurfaceAndRationalBSplineSurface from StepGeom 
24
25 inherits BSplineSurface from StepGeom 
26
27
28         --- This classe is an implementation of EXPRESS
29         --  ANDOR Subtype Declaration.
30 uses
31
32         BezierSurface from StepGeom, 
33         RationalBSplineSurface from StepGeom, 
34         HAsciiString from TCollection, 
35         Integer from Standard, 
36         HArray2OfCartesianPoint from StepGeom, 
37         BSplineSurfaceForm from StepGeom, 
38         Logical from StepData, 
39         HArray2OfReal from TColStd, 
40         Real from Standard
41 is
42
43         Create returns mutable BezierSurfaceAndRationalBSplineSurface;
44         ---Purpose: Returns a BezierSurfaceAndRationalBSplineSurface
45
46
47         Init (me : mutable;
48               aName : mutable HAsciiString from TCollection;
49               aUDegree : Integer from Standard;
50               aVDegree : Integer from Standard;
51               aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
52               aSurfaceForm : BSplineSurfaceForm from StepGeom;
53               aUClosed : Logical from StepData;
54               aVClosed : Logical from StepData;
55               aSelfIntersect : Logical from StepData) is redefined;
56
57         Init (me : mutable;
58               aName : mutable HAsciiString from TCollection;
59               aUDegree : Integer from Standard;
60               aVDegree : Integer from Standard;
61               aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
62               aSurfaceForm : BSplineSurfaceForm from StepGeom;
63               aUClosed : Logical from StepData;
64               aVClosed : Logical from StepData;
65               aSelfIntersect : Logical from StepData;
66               aBezierSurface : mutable BezierSurface from StepGeom;
67               aRationalBSplineSurface : mutable RationalBSplineSurface from StepGeom) is virtual;
68
69         Init (me : mutable;
70               aName : mutable HAsciiString from TCollection;
71               aUDegree : Integer from Standard;
72               aVDegree : Integer from Standard;
73               aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
74               aSurfaceForm : BSplineSurfaceForm from StepGeom;
75               aUClosed : Logical from StepData;
76               aVClosed : Logical from StepData;
77               aSelfIntersect : Logical from StepData;
78               aWeightsData : mutable HArray2OfReal from TColStd) is virtual;
79
80         -- Specific Methods for Field Data Access --
81
82         SetBezierSurface(me : mutable; aBezierSurface : mutable BezierSurface);
83         BezierSurface (me) returns mutable BezierSurface;
84         SetRationalBSplineSurface(me : mutable; aRationalBSplineSurface : mutable RationalBSplineSurface);
85         RationalBSplineSurface (me) returns mutable RationalBSplineSurface;
86
87         -- Specific Methods for ANDOR Field Data Access --
88
89
90         -- Specific Methods for ANDOR Field Data Access --
91
92         SetWeightsData(me : mutable; aWeightsData : mutable HArray2OfReal);
93         WeightsData (me) returns mutable HArray2OfReal;
94         WeightsDataValue (me; num1 : Integer;  num2 : Integer) returns Real;
95         NbWeightsDataI (me) returns Integer;
96         NbWeightsDataJ (me) returns Integer;
97
98 fields
99
100         bezierSurface : BezierSurface from StepGeom;
101         rationalBSplineSurface : RationalBSplineSurface from StepGeom;
102
103 end BezierSurfaceAndRationalBSplineSurface;