0024988: Wrong result done by projection algorithm
[occt.git] / src / AppCont / AppCont_LeastSquare.cdl
diff --git a/src/AppCont/AppCont_LeastSquare.cdl b/src/AppCont/AppCont_LeastSquare.cdl
deleted file mode 100644 (file)
index 483448a..0000000
+++ /dev/null
@@ -1,108 +0,0 @@
--- Created on: 1993-04-22
--- Created by: Laurent PAINNOT
--- Copyright (c) 1993-1999 Matra Datavision
--- Copyright (c) 1999-2014 OPEN CASCADE SAS
---
--- This file is part of Open CASCADE Technology software library.
---
--- This library is free software; you can redistribute it and/or modify it under
--- the terms of the GNU Lesser General Public License version 2.1 as published
--- by the Free Software Foundation, with special exception defined in the file
--- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
--- distribution for complete text of the license and disclaimer of any warranty.
---
--- Alternatively, this file may be used under the terms of Open CASCADE
--- commercial license or contractual agreement.
-
-generic class LeastSquare from AppCont(MultiLine as any;
-                                      LineTool  as any)
-                                      ---as TheToolLine(MultiLine)
-
-    ---Purpose: Makes an approximation of a continous Line described by
-    --          the tool TheLineTool.
-    --          Minimizing the difference between the approximate result
-    --          Curve and a continous MultiLine
-
-uses  Matrix          from math,
-      Vector          from math,
-      Constraint      from AppParCurves,
-      MultiCurve      from AppParCurves
-
-
-raises NotDone        from StdFail, 
-       OutOfRange     from Standard,
-       DimensionError from Standard
-
-
-
-is
-
-    Create(SSP: MultiLine; U0, U1: Real; FirstCons, LastCons: Constraint; 
-          Deg: Integer; NbPoints: Integer = 24)
-       ---Purpose: given a continous MultiLine, this algorithm computes 
-       --          the approximation into Bezier curves. 
-       --          NbPoints points are taken on the initial MultiLine for
-       --          minimizing the surface between the MultiLine and the
-       --          Bezier curves doing the approximation.
-       --          The first point will be the point of parameter U0 with
-       --          a constraint FirstCons.
-       --          The last point will be the point of parameter U1 with
-       --          a constraint LastCons.
-
-    returns LeastSquare from AppCont
-    raises DimensionError from Standard;    
-
-
-    
-    IsDone(me)
-       ---Purpose: returns True if all has been correctly done.
-
-    returns Boolean
-    is static;
-    
-    
-    Value(me: in out)
-       ---Purpose: returns the result of the approximation, i.e. a
-       --          MultiCurve.
-       --          An exception is raised if NotDone.
-       ---C++: return const &
-
-    returns MultiCurve from AppParCurves
-    raises NotDone from StdFail
-    is static;
-
-
-    NbBColumns(me; SSP: MultiLine)
-       ---Purpose: is internally used by the constuctor.
-
-    returns Integer
-    is static protected;
-
-
-    Error(me; F: in out Real; MaxE3d, MaxE2d: in out Real)
-       ---Purpose: F is the sum of the square errors at each of the 
-       --          NbPoints of the MultiLine.
-       --          MaxE3d is the maximum 3d value of these errors.
-       --          MaxE2d is the maximum 2d value of these errors.
-       --          An exception is raised if NotDone.
-
-    raises NotDone from StdFail
-    is static;
-
-
-
-fields
-
-Done:      Boolean;
-SCU:       MultiCurve from AppParCurves;
-Degre:     Integer;
-Nbdiscret: Integer;
-nbP:       Integer;
-nbP2d:     Integer;
-Points:    Matrix;
-Poles:     Matrix;
-myParam:   Vector;
-VB:        Matrix;
-
-end LeastSquare from AppCont;
-