|
| static NCollection_Array1< double > * | NoWeights () |
| | Used as argument for a non rational functions.
|
| |
| static NCollection_Array2< double > * | NoWeights2 () |
| | Used as argument for a non rational functions.
|
| |
| static void | SetPoles (const NCollection_Array1< gp_Pnt > &Poles, NCollection_Array1< double > &FP) |
| | Copy in FP the coordinates of the poles.
|
| |
| static void | SetPoles (const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > &Weights, NCollection_Array1< double > &FP) |
| | Copy in FP the coordinates of the poles.
|
| |
| static void | GetPoles (const NCollection_Array1< double > &FP, NCollection_Array1< gp_Pnt > &Poles) |
| | Get from FP the coordinates of the poles.
|
| |
| static void | GetPoles (const NCollection_Array1< double > &FP, NCollection_Array1< gp_Pnt > &Poles, NCollection_Array1< double > &Weights) |
| | Get from FP the coordinates of the poles.
|
| |
| static void | SetPoles (const NCollection_Array1< gp_Pnt2d > &Poles, NCollection_Array1< double > &FP) |
| | Copy in FP the coordinates of the poles.
|
| |
| static void | SetPoles (const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > &Weights, NCollection_Array1< double > &FP) |
| | Copy in FP the coordinates of the poles.
|
| |
| static void | GetPoles (const NCollection_Array1< double > &FP, NCollection_Array1< gp_Pnt2d > &Poles) |
| | Get from FP the coordinates of the poles.
|
| |
| static void | GetPoles (const NCollection_Array1< double > &FP, NCollection_Array1< gp_Pnt2d > &Poles, NCollection_Array1< double > &Weights) |
| | Get from FP the coordinates of the poles.
|
| |
| static double | Bin (const int N, const int P) |
| | Returns the Binomial Cnp. N should be <= BSplCLib::MaxDegree().
|
| |
| static void | RationalDerivative (const int Degree, const int N, const int Dimension, double &Ders, double &RDers, const bool All=true) |
| | Computes the derivatives of a ratio at order <N> in dimension <Dimension>.
|
| |
| static void | RationalDerivatives (const int DerivativesRequest, const int Dimension, double &PolesDerivatives, double &WeightsDerivatives, double &RationalDerivates) |
| | Computes DerivativesRequest derivatives of a ratio at of a BSpline function of degree <Degree> dimension <Dimension>.
|
| |
| static void | EvalPolynomial (const double U, const int DerivativeOrder, const int Degree, const int Dimension, const double &PolynomialCoeff, double &Results) |
| | Performs Horner method with synthetic division for derivatives parameter , with <Degree> and <Dimension>. PolynomialCoeff are stored in the following fashion.
|
| |
| static void | NoDerivativeEvalPolynomial (const double U, const int Degree, const int Dimension, const int DegreeDimension, const double &PolynomialCoeff, double &Results) |
| | Same as above with DerivativeOrder = 0;.
|
| |
| static void | EvalPoly2Var (const double U, const double V, const int UDerivativeOrder, const int VDerivativeOrder, const int UDegree, const int VDegree, const int Dimension, double &PolynomialCoeff, double &Results) |
| | Applies EvalPolynomial twice to evaluate the derivative of orders UDerivativeOrder in U, VDerivativeOrder in V at parameters U,V.
|
| |
| static int | EvalLagrange (const double U, const int DerivativeOrder, const int Degree, const int Dimension, double &ValueArray, double &ParameterArray, double &Results) |
| | Performs the Lagrange Interpolation of given series of points with given parameters with the requested derivative order Results will store things in the following format with d = DerivativeOrder.
|
| |
| static int | EvalCubicHermite (const double U, const int DerivativeOrder, const int Dimension, double &ValueArray, double &DerivativeArray, double &ParameterArray, double &Results) |
| | Performs the Cubic Hermite Interpolation of given series of points with given parameters with the requested derivative order. ValueArray stores the value at the first and last parameter. It has the following format :
|
| |
| static bool | HermiteCoefficients (const double FirstParameter, const double LastParameter, const int FirstOrder, const int LastOrder, math_Matrix &MatrixCoefs) |
| | This build the coefficient of Hermite's polynomes on [FirstParameter, LastParameter].
|
| |
| static void | CoefficientsPoles (const NCollection_Array1< gp_Pnt > &Coefs, const NCollection_Array1< double > *WCoefs, NCollection_Array1< gp_Pnt > &Poles, NCollection_Array1< double > *WPoles) |
| |
| static void | CoefficientsPoles (const NCollection_Array1< gp_Pnt2d > &Coefs, const NCollection_Array1< double > *WCoefs, NCollection_Array1< gp_Pnt2d > &Poles, NCollection_Array1< double > *WPoles) |
| |
| static void | CoefficientsPoles (const NCollection_Array1< double > &Coefs, const NCollection_Array1< double > *WCoefs, NCollection_Array1< double > &Poles, NCollection_Array1< double > *WPoles) |
| |
| static void | CoefficientsPoles (const int dim, const NCollection_Array1< double > &Coefs, const NCollection_Array1< double > *WCoefs, NCollection_Array1< double > &Poles, NCollection_Array1< double > *WPoles) |
| |
| static void | Trimming (const double U1, const double U2, NCollection_Array1< gp_Pnt > &Coeffs, NCollection_Array1< double > *WCoeffs) |
| |
| static void | Trimming (const double U1, const double U2, NCollection_Array1< gp_Pnt2d > &Coeffs, NCollection_Array1< double > *WCoeffs) |
| |
| static void | Trimming (const double U1, const double U2, NCollection_Array1< double > &Coeffs, NCollection_Array1< double > *WCoeffs) |
| |
| static void | Trimming (const double U1, const double U2, const int dim, NCollection_Array1< double > &Coeffs, NCollection_Array1< double > *WCoeffs) |
| |
| static void | CoefficientsPoles (const NCollection_Array2< gp_Pnt > &Coefs, const NCollection_Array2< double > *WCoefs, NCollection_Array2< gp_Pnt > &Poles, NCollection_Array2< double > *WPoles) |
| |
| static void | UTrimming (const double U1, const double U2, NCollection_Array2< gp_Pnt > &Coeffs, NCollection_Array2< double > *WCoeffs) |
| |
| static void | VTrimming (const double V1, const double V2, NCollection_Array2< gp_Pnt > &Coeffs, NCollection_Array2< double > *WCoeffs) |
| |
| static bool | HermiteInterpolate (const int Dimension, const double FirstParameter, const double LastParameter, const int FirstOrder, const int LastOrder, const NCollection_Array2< double > &FirstConstr, const NCollection_Array2< double > &LastConstr, NCollection_Array1< double > &Coefficients) |
| | Compute the coefficients in the canonical base of the polynomial satisfying the given constraints at the given parameters The array FirstContr(i,j) i=1,Dimension j=0,FirstOrder contains the values of the constraint at parameter FirstParameter idem for LastConstr.
|
| |
| static void | JacobiParameters (const GeomAbs_Shape ConstraintOrder, const int MaxDegree, const int Code, int &NbGaussPoints, int &WorkDegree) |
| | Compute the number of points used for integral computations (NbGaussPoints) and the degree of Jacobi Polynomial (WorkDegree). ConstraintOrder has to be GeomAbs_C0, GeomAbs_C1 or GeomAbs_C2 Code: Code d' init. des parametres de discretisation. = -5 = -4 = -3 = -2 = -1 = 1 calcul rapide avec precision moyenne. = 2 calcul rapide avec meilleure precision. = 3 calcul un peu plus lent avec bonne precision. = 4 calcul lent avec la meilleure precision possible.
|
| |
| static int | NivConstr (const GeomAbs_Shape ConstraintOrder) |
| | translates from GeomAbs_Shape to Integer
|
| |
| static GeomAbs_Shape | ConstraintOrder (const int NivConstr) |
| | translates from Integer to GeomAbs_Shape
|
| |
| static void | EvalLength (const int Degree, const int Dimension, double &PolynomialCoeff, const double U1, const double U2, double &Length) |
| |
| static void | EvalLength (const int Degree, const int Dimension, double &PolynomialCoeff, const double U1, const double U2, const double Tol, double &Length, double &Error) |
| |
PLib means Polynomial functions library. This pk provides basic computation functions for polynomial functions. Note: weight arrays can be passed by pointer for some functions so that NULL pointer is valid. That means no weights passed.
Computes the derivatives of a ratio at order <N> in dimension <Dimension>.
<Ders> is an array containing the values of the input derivatives from 0 to std::min(<N>,<Degree>). For orders higher than <Degree> the inputcd /s2d1/BMDL/ derivatives are assumed to be 0.
Content of <Ders>:
x(1),x(2),...,x(Dimension),w x'(1),x'(2),...,x'(Dimension),w' x''(1),x''(2),...,x''(Dimension),w''
If <All> is false, only the derivative at order <N> is computed. <RDers> is an array of length Dimension which will contain the result:
x(1)/w , x(2)/w , ... derivated <N> times
If <All> is true all the derivatives up to order <N> are computed. <RDers> is an array of length Dimension * (N+1) which will contains:
x(1)/w , x(2)/w , ... x(1)/w , x(2)/w , ... derivated <1> times x(1)/w , x(2)/w , ... derivated <2> times ... x(1)/w , x(2)/w , ... derivated <N> times
Warning: <RDers> must be dimensioned properly.
| static void PLib::RationalDerivatives |
( |
const int | DerivativesRequest, |
|
|
const int | Dimension, |
|
|
double & | PolesDerivatives, |
|
|
double & | WeightsDerivatives, |
|
|
double & | RationalDerivates ) |
|
static |
Computes DerivativesRequest derivatives of a ratio at of a BSpline function of degree <Degree> dimension <Dimension>.
<PolesDerivatives> is an array containing the values of the input derivatives from 0 to <DerivativeRequest> For orders higher than <Degree> the input derivatives are assumed to be 0.
Content of <PoleasDerivatives> :
x(1),x(2),...,x(Dimension) x'(1),x'(2),...,x'(Dimension) x''(1),x''(2),...,x''(Dimension)
WeightsDerivatives is an array that contains derivatives from 0 to <DerivativeRequest> After returning from the routine the array RationalDerivatives contains the following x(1)/w , x(2)/w , ... x(1)/w , x(2)/w , ... derivated once x(1)/w , x(2)/w , ... twice x(1)/w , x(2)/w , ... derivated <DerivativeRequest> times
The array RationalDerivatives and PolesDerivatives can be same since the overwrite is non destructive within the algorithm
Warning: <RationalDerivates> must be dimensioned properly.