File indexing completed on 2024-11-16 09:46:09
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _AppParCurves_HeaderFile
0018 #define _AppParCurves_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 #include <Standard_Handle.hxx>
0023
0024 #include <math_Vector.hxx>
0025 #include <math_IntegerVector.hxx>
0026 class math_Matrix;
0027
0028
0029
0030
0031
0032 class AppParCurves
0033 {
0034 public:
0035
0036 DEFINE_STANDARD_ALLOC
0037
0038
0039 Standard_EXPORT static void BernsteinMatrix (const Standard_Integer NbPoles, const math_Vector& U, math_Matrix& A);
0040
0041 Standard_EXPORT static void Bernstein (const Standard_Integer NbPoles, const math_Vector& U, math_Matrix& A, math_Matrix& DA);
0042
0043 Standard_EXPORT static void SecondDerivativeBernstein (const Standard_Real U, math_Vector& DDA);
0044
0045 Standard_EXPORT static void SplineFunction (const Standard_Integer NbPoles, const Standard_Integer Degree, const math_Vector& Parameters, const math_Vector& FlatKnots, math_Matrix& A, math_Matrix& DA, math_IntegerVector& Index);
0046
0047 };
0048
0049 #endif