0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / AppDef / AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute.hxx
CommitLineData
42cf5bc1 1// Created on: 1991-12-02
2// Created by: Laurent PAINNOT
3// Copyright (c) 1991-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
17#ifndef _AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute_HeaderFile
18#define _AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <Standard_Boolean.hxx>
25#include <AppDef_MultiLine.hxx>
26#include <AppParCurves_MultiBSpCurve.hxx>
27#include <Standard_Integer.hxx>
28#include <math_Vector.hxx>
29#include <Standard_Real.hxx>
30#include <math_Matrix.hxx>
31#include <AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute.hxx>
32#include <TColStd_HArray1OfInteger.hxx>
33#include <AppParCurves_HArray1OfConstraintCouple.hxx>
34#include <math_MultipleVarFunctionWithGradient.hxx>
35#include <TColStd_Array1OfReal.hxx>
36#include <TColStd_Array1OfInteger.hxx>
37#include <math_IntegerVector.hxx>
38#include <AppParCurves_Constraint.hxx>
39class AppDef_MultiLine;
40class AppDef_MyLineTool;
41class AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute;
42class AppParCurves_MultiBSpCurve;
43class math_Matrix;
44
45
46
47class AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute : public math_MultipleVarFunctionWithGradient
48{
49public:
50
51 DEFINE_STANDARD_ALLOC
52
53
36b9ff75 54 //! initializes the fields of the function. The approximating
55 //! curve has <NbPol> control points.
42cf5bc1 56 Standard_EXPORT AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute(const AppDef_MultiLine& SSP, const Standard_Integer FirstPoint, const Standard_Integer LastPoint, const Handle(AppParCurves_HArray1OfConstraintCouple)& TheConstraints, const math_Vector& Parameters, const TColStd_Array1OfReal& Knots, const TColStd_Array1OfInteger& Mults, const Standard_Integer NbPol);
57
36b9ff75 58 //! returns the number of variables of the function. It
59 //! corresponds to the number of MultiPoints.
42cf5bc1 60 Standard_EXPORT Standard_Integer NbVariables() const;
61
36b9ff75 62 //! this method computes the new approximation of the
63 //! MultiLine
64 //! SSP and calculates F = sum (||Pui - Bi*Pi||2) for each
65 //! point of the MultiLine.
42cf5bc1 66 Standard_EXPORT Standard_Boolean Value (const math_Vector& X, Standard_Real& F);
67
36b9ff75 68 //! returns the gradient G of the sum above for the
69 //! parameters Xi.
42cf5bc1 70 Standard_EXPORT Standard_Boolean Gradient (const math_Vector& X, math_Vector& G);
71
36b9ff75 72 //! returns the value F=sum(||Pui - Bi*Pi||)2.
73 //! returns the value G = grad(F) for the parameters Xi.
42cf5bc1 74 Standard_EXPORT Standard_Boolean Values (const math_Vector& X, Standard_Real& F, math_Vector& G);
75
36b9ff75 76 //! returns the new parameters of the MultiLine.
42cf5bc1 77 Standard_EXPORT const math_Vector& NewParameters() const;
78
36b9ff75 79 //! returns the MultiBSpCurve approximating the set after
80 //! computing the value F or Grad(F).
42cf5bc1 81 Standard_EXPORT AppParCurves_MultiBSpCurve CurveValue();
82
36b9ff75 83 //! returns the distance between the MultiPoint of range
84 //! IPoint and the curve CurveIndex.
42cf5bc1 85 Standard_EXPORT Standard_Real Error (const Standard_Integer IPoint, const Standard_Integer CurveIndex);
86
36b9ff75 87 //! returns the maximum distance between the points
88 //! and the MultiBSpCurve.
42cf5bc1 89 Standard_EXPORT Standard_Real MaxError3d() const;
90
36b9ff75 91 //! returns the maximum distance between the points
92 //! and the MultiBSpCurve.
42cf5bc1 93 Standard_EXPORT Standard_Real MaxError2d() const;
94
36b9ff75 95 //! returns the function matrix used to approximate the
96 //! multiline.
42cf5bc1 97 Standard_EXPORT const math_Matrix& FunctionMatrix() const;
98
36b9ff75 99 //! returns the derivative function matrix used to approximate the
100 //! multiline.
42cf5bc1 101 Standard_EXPORT const math_Matrix& DerivativeFunctionMatrix() const;
102
36b9ff75 103 //! Returns the indexes of the first non null values of
104 //! A and DA.
105 //! The values are non null from Index(ieme point) +1
106 //! to Index(ieme point) + degree +1.
42cf5bc1 107 Standard_EXPORT const math_IntegerVector& Index() const;
108
109 Standard_EXPORT AppParCurves_Constraint FirstConstraint (const Handle(AppParCurves_HArray1OfConstraintCouple)& TheConstraints, const Standard_Integer FirstPoint) const;
110
111 Standard_EXPORT AppParCurves_Constraint LastConstraint (const Handle(AppParCurves_HArray1OfConstraintCouple)& TheConstraints, const Standard_Integer LastPoint) const;
112
113 Standard_EXPORT void SetFirstLambda (const Standard_Real l1);
114
115 Standard_EXPORT void SetLastLambda (const Standard_Real l2);
116
117
118
119
120protected:
121
122
36b9ff75 123 //! this method is used each time Value or Gradient is
124 //! needed.
42cf5bc1 125 Standard_EXPORT void Perform (const math_Vector& X);
126
127
128
129
130private:
131
132
133
134 Standard_Boolean Done;
135 AppDef_MultiLine MyMultiLine;
136 AppParCurves_MultiBSpCurve MyMultiBSpCurve;
137 Standard_Integer nbpoles;
138 math_Vector myParameters;
139 Standard_Real FVal;
140 math_Vector ValGrad_F;
141 math_Matrix MyF;
142 math_Matrix PTLX;
143 math_Matrix PTLY;
144 math_Matrix PTLZ;
145 math_Matrix A;
146 math_Matrix DA;
147 AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute MyLeastSquare;
148 Standard_Boolean Contraintes;
149 Standard_Integer NbP;
150 Standard_Integer NbCu;
151 Standard_Integer Adeb;
152 Standard_Integer Afin;
153 Handle(TColStd_HArray1OfInteger) tabdim;
154 Standard_Real ERR3d;
155 Standard_Real ERR2d;
156 Standard_Integer FirstP;
157 Standard_Integer LastP;
158 Handle(AppParCurves_HArray1OfConstraintCouple) myConstraints;
159 Standard_Real mylambda1;
160 Standard_Real mylambda2;
161
162
163};
164
165
166
167
168
169
170
171#endif // _AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute_HeaderFile