0024624: Lost word in license statement in source files
[occt.git] / src / Approx / Approx_MCurvesToBSpCurve.cdl
... / ...
CommitLineData
1-- Created on: 1994-02-21
2-- Created by: Laurent PAINNOT
3-- Copyright (c) 1994-1999 Matra Datavision
4-- Copyright (c) 1999-2014 OPEN CASCADE SAS
5--
6-- This file is part of Open CASCADE Technology software library.
7--
8-- This library is free software; you can redistribute it and/or modify it under
9-- the terms of the GNU Lesser General Public License version 2.1 as published
10-- by the Free Software Foundation, with special exception defined in the file
11-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12-- distribution for complete text of the license and disclaimer of any warranty.
13--
14-- Alternatively, this file may be used under the terms of Open CASCADE
15-- commercial license or contractual agreement.
16
17class MCurvesToBSpCurve from Approx
18
19
20
21uses MultiBSpCurve from AppParCurves,
22 MultiCurve from AppParCurves,
23 SequenceOfMultiCurve from AppParCurves
24
25is
26
27
28 Create returns MCurvesToBSpCurve;
29
30 Reset(me: in out)
31 --- Clear the internal Sequence Of MultiCurve
32 is static;
33
34 Append(me: in out; MC: MultiCurve from AppParCurves)
35 is static;
36
37
38 Perform(me: in out)
39 is static;
40
41 Perform(me: in out; TheSeq: SequenceOfMultiCurve from AppParCurves)
42 is static;
43
44
45 Value(me)
46 ---Purpose: return the composite MultiCurves as a MultiBSpCurve.
47 ---C++: return const&
48
49 returns MultiBSpCurve
50 is static;
51
52
53 ChangeValue(me: in out)
54 ---Purpose: return the composite MultiCurves as a MultiBSpCurve.
55 ---C++: return const&
56
57 returns MultiBSpCurve
58 is static;
59
60
61fields
62
63
64mySpline: MultiBSpCurve from AppParCurves;
65myDone : Boolean from Standard;
66myCurves: SequenceOfMultiCurve from AppParCurves;
67
68end MCurvesToBSpCurve;