0024157: Parallelization of assembly part of BO
[occt.git] / src / StepGeom / StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.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 BSplineSurfaceWithKnotsAndRationalBSplineSurface 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         BSplineSurfaceWithKnots 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         HArray1OfInteger from TColStd, 
40         HArray1OfReal from TColStd, 
41         HArray2OfReal from TColStd, 
42         KnotType from StepGeom
43 is
44
45         Create returns mutable BSplineSurfaceWithKnotsAndRationalBSplineSurface;
46         ---Purpose: Returns a BSplineSurfaceWithKnotsAndRationalBSplineSurface
47
48
49         Init (me : mutable;
50               aName : mutable HAsciiString from TCollection;
51               aUDegree : Integer from Standard;
52               aVDegree : Integer from Standard;
53               aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
54               aSurfaceForm : BSplineSurfaceForm from StepGeom;
55               aUClosed : Logical from StepData;
56               aVClosed : Logical from StepData;
57               aSelfIntersect : Logical from StepData) is redefined;
58
59         Init (me : mutable;
60               aName : mutable HAsciiString from TCollection;
61               aUDegree : Integer from Standard;
62               aVDegree : Integer from Standard;
63               aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
64               aSurfaceForm : BSplineSurfaceForm from StepGeom;
65               aUClosed : Logical from StepData;
66               aVClosed : Logical from StepData;
67               aSelfIntersect : Logical from StepData;
68               aBSplineSurfaceWithKnots : mutable BSplineSurfaceWithKnots from StepGeom;
69               aRationalBSplineSurface : mutable RationalBSplineSurface from StepGeom) is virtual;
70
71         Init (me : mutable;
72               aName : mutable HAsciiString from TCollection;
73               aUDegree : Integer from Standard;
74               aVDegree : Integer from Standard;
75               aControlPointsList : mutable HArray2OfCartesianPoint from StepGeom;
76               aSurfaceForm : BSplineSurfaceForm from StepGeom;
77               aUClosed : Logical from StepData;
78               aVClosed : Logical from StepData;
79               aSelfIntersect : Logical from StepData;
80               aUMultiplicities : mutable HArray1OfInteger from TColStd;
81               aVMultiplicities : mutable HArray1OfInteger from TColStd;
82               aUKnots : mutable HArray1OfReal from TColStd;
83               aVKnots : mutable HArray1OfReal from TColStd;
84               aKnotSpec : KnotType from StepGeom;
85               aWeightsData : mutable HArray2OfReal from TColStd) is virtual;
86
87         -- Specific Methods for Field Data Access --
88
89         SetBSplineSurfaceWithKnots(me : mutable; aBSplineSurfaceWithKnots : mutable BSplineSurfaceWithKnots);
90         BSplineSurfaceWithKnots (me) returns mutable BSplineSurfaceWithKnots;
91         SetRationalBSplineSurface(me : mutable; aRationalBSplineSurface : mutable RationalBSplineSurface);
92         RationalBSplineSurface (me) returns mutable RationalBSplineSurface;
93
94         -- Specific Methods for ANDOR Field Data Access --
95
96         SetUMultiplicities(me : mutable; aUMultiplicities : mutable HArray1OfInteger);
97         UMultiplicities (me) returns mutable HArray1OfInteger;
98         UMultiplicitiesValue (me; num : Integer) returns Integer;
99         NbUMultiplicities (me) returns Integer;
100         SetVMultiplicities(me : mutable; aVMultiplicities : mutable HArray1OfInteger);
101         VMultiplicities (me) returns mutable HArray1OfInteger;
102         VMultiplicitiesValue (me; num : Integer) returns Integer;
103         NbVMultiplicities (me) returns Integer;
104         SetUKnots(me : mutable; aUKnots : mutable HArray1OfReal);
105         UKnots (me) returns mutable HArray1OfReal;
106         UKnotsValue (me; num : Integer) returns Real;
107         NbUKnots (me) returns Integer;
108         SetVKnots(me : mutable; aVKnots : mutable HArray1OfReal);
109         VKnots (me) returns mutable HArray1OfReal;
110         VKnotsValue (me; num : Integer) returns Real;
111         NbVKnots (me) returns Integer;
112         SetKnotSpec(me : mutable; aKnotSpec : KnotType);
113         KnotSpec (me) returns KnotType;
114
115         -- Specific Methods for ANDOR Field Data Access --
116
117         SetWeightsData(me : mutable; aWeightsData : mutable HArray2OfReal);
118         WeightsData (me) returns mutable HArray2OfReal;
119         WeightsDataValue (me; num1 : Integer;  num2 : Integer) returns Real;
120         NbWeightsDataI (me) returns Integer;
121         NbWeightsDataJ (me) returns Integer;
122
123 fields
124
125         bSplineSurfaceWithKnots : BSplineSurfaceWithKnots from StepGeom;
126         rationalBSplineSurface : RationalBSplineSurface from StepGeom;
127
128 end BSplineSurfaceWithKnotsAndRationalBSplineSurface;