0023024: Update headers of OCCT files
[occt.git] / src / AdvApp2Var / AdvApp2Var_Framework.cdl
1 -- Created on: 1996-04-10
2 -- Created by: Joelle CHAUVET
3 -- Copyright (c) 1996-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 -- Modified:    Mon Dec  9 10:30:56 1996
22 --    by:       Joelle CHAUVET
23 --              G1135 : Empty constructor
24
25 class Framework from AdvApp2Var
26
27 uses
28
29     Boolean,Real,NoSuchObject from Standard,
30     HArray1OfReal from TColStd,
31     IsoType from GeomAbs,
32     SequenceOfNode,SequenceOfStrip,Iso,Node from AdvApp2Var
33
34 raises NoSuchObject from Standard
35
36 is
37
38     Create returns Framework;
39     Create(Frame : SequenceOfNode; 
40            UFrontier, VFrontier : SequenceOfStrip)  
41     returns Framework;
42     
43     FirstNotApprox(me; IndexIso,IndexStrip : out Integer; 
44                        anIso : out Iso) 
45     ---Purpose: search the Index of the first Iso not approximated,
46     --          if all Isos are approximated Standard_False is returned.
47     returns Boolean; 
48
49     FirstNode(me; Type : IsoType; IndexIso,IndexStrip : Integer) 
50     returns Integer;
51     
52     LastNode(me; Type : IsoType; IndexIso,IndexStrip : Integer) returns Integer; 
53     
54     ChangeIso(me: in out; IndexIso,IndexStrip : Integer; anIso : Iso);
55     
56     Node(me; IndexNode : Integer)
57     ---C++: return const&
58     ---C++: inline    
59     returns Node
60     raises NoSuchObject from Standard;
61         
62     Node(me; U,V : Real) 
63     ---C++: return const&
64     returns Node
65     raises NoSuchObject from Standard;
66         
67     IsoU(me; U,V0,V1 : Real) 
68     ---C++: return const&
69     returns Iso
70     raises NoSuchObject from Standard;
71         
72     IsoV(me; U0,U1,V : Real) 
73     ---C++: return const&    
74     returns Iso
75     raises NoSuchObject from Standard;
76         
77     ChangeNode(me: in out; IndexNode : Integer)
78     ---C++: return &
79     ---C++: inline    
80     returns Node;
81
82     
83     UpdateInU(me: in out; CuttingValue : Real);
84     
85     UpdateInV(me: in out; CuttingValue : Real);
86     
87     UEquation(me; IndexIso,IndexStrip : Integer) 
88     ---C++: return const &
89     returns HArray1OfReal; 
90     
91     VEquation(me; IndexIso,IndexStrip : Integer)
92     ---C++: return const & 
93      returns HArray1OfReal;
94  
95
96 fields
97
98     myNodeConstraints    : SequenceOfNode;
99     myUConstraints       : SequenceOfStrip;
100     myVConstraints       : SequenceOfStrip;
101
102 end Framework;
103