|
| static void | Hunt (const NCollection_Array1< double > &theArray, const double theX, int &theXPos) |
| | This routine searches the position of the real value theX in the monotonically increasing set of real values theArray using bisection algorithm.
|
| |
| static int | FirstUKnotIndex (const int Degree, const NCollection_Array1< int > &Mults) |
| | Computes the index of the knots value which gives the start point of the curve.
|
| |
| static int | LastUKnotIndex (const int Degree, const NCollection_Array1< int > &Mults) |
| | Computes the index of the knots value which gives the end point of the curve.
|
| |
| static int | FlatIndex (const int Degree, const int Index, const NCollection_Array1< int > &Mults, const bool Periodic) |
| | Computes the index of the flats knots sequence corresponding to <Index> in the knots sequence which multiplicities are <Mults>.
|
| |
| static void | LocateParameter (const int Degree, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, const double U, const bool IsPeriodic, const int FromK1, const int ToK2, int &KnotIndex, double &NewU) |
| | Locates the parametric value U in the knots sequence between the knot K1 and the knot K2. The value return in Index verifies.
|
| |
| static void | LocateParameter (const int Degree, const NCollection_Array1< double > &Knots, const double U, const bool IsPeriodic, const int FromK1, const int ToK2, int &KnotIndex, double &NewU) |
| | Locates the parametric value U in the knots sequence between the knot K1 and the knot K2. The value return in Index verifies.
|
| |
| static void | LocateParameter (const int Degree, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, const double U, const bool Periodic, int &Index, double &NewU) |
| |
| static int | MaxKnotMult (const NCollection_Array1< int > &Mults, const int K1, const int K2) |
| | Finds the greatest multiplicity in a set of knots between K1 and K2. Mults is the multiplicity associated with each knot value.
|
| |
| static int | MinKnotMult (const NCollection_Array1< int > &Mults, const int K1, const int K2) |
| | Finds the lowest multiplicity in a set of knots between K1 and K2. Mults is the multiplicity associated with each knot value.
|
| |
| static int | NbPoles (const int Degree, const bool Periodic, const NCollection_Array1< int > &Mults) |
| | Returns the number of poles of the curve. Returns 0 if one of the multiplicities is incorrect.
|
| |
| static int | KnotSequenceLength (const NCollection_Array1< int > &Mults, const int Degree, const bool Periodic) |
| | Returns the length of the sequence of knots with repetition.
|
| |
| static void | KnotSequence (const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, NCollection_Array1< double > &KnotSeq, const bool Periodic=false) |
| |
| static void | KnotSequence (const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, const int Degree, const bool Periodic, NCollection_Array1< double > &KnotSeq) |
| | Computes the sequence of knots KnotSeq with repetition of the knots of multiplicity greater than 1.
|
| |
| static int | KnotsLength (const NCollection_Array1< double > &KnotSeq, const bool Periodic=false) |
| | Returns thelength of the sequence of knots (and Mults) without repetition.
|
| |
| static void | Knots (const NCollection_Array1< double > &KnotSeq, NCollection_Array1< double > &Knots, NCollection_Array1< int > &Mults, const bool Periodic=false) |
| | Computes the sequence of knots Knots without repetition of the knots of multiplicity greater than 1.
|
| |
| static BSplCLib_KnotDistribution | KnotForm (const NCollection_Array1< double > &Knots, const int FromK1, const int ToK2) |
| | Analyses if the knots distribution is "Uniform" or "NonUniform" between the knot FromK1 and the knot ToK2. There is no repetition of knot in the knots'sequence <Knots>.
|
| |
| static BSplCLib_MultDistribution | MultForm (const NCollection_Array1< int > &Mults, const int FromK1, const int ToK2) |
| | Analyses the distribution of multiplicities between the knot FromK1 and the Knot ToK2.
|
| |
| static void | KnotAnalysis (const int Degree, const bool Periodic, const NCollection_Array1< double > &CKnots, const NCollection_Array1< int > &CMults, GeomAbs_BSplKnotDistribution &KnotForm, int &MaxKnotMult) |
| | Analyzes the array of knots. Returns the form and the maximum knot multiplicity.
|
| |
| static void | Reparametrize (const double U1, const double U2, NCollection_Array1< double > &Knots) |
| | Reparametrizes a B-spline curve to [U1, U2]. The knot values are recomputed such that Knots (Lower) = U1 and Knots (Upper) = U2 but the knot form is not modified. Warnings: In the array Knots the values must be in ascending order. U1 must not be equal to U2 to avoid division by zero.
|
| |
| static void | Reverse (NCollection_Array1< double > &Knots) |
| | Reverses the array knots to become the knots sequence of the reversed curve.
|
| |
| static void | Reverse (NCollection_Array1< int > &Mults) |
| | Reverses the array of multiplicities.
|
| |
| static void | Reverse (NCollection_Array1< gp_Pnt > &Poles, const int Last) |
| | Reverses the array of poles. Last is the index of the new first pole. On a non periodic curve last is Poles.Upper(). On a periodic curve last is.
|
| |
| static void | Reverse (NCollection_Array1< gp_Pnt2d > &Poles, const int Last) |
| | Reverses the array of poles.
|
| |
| static void | Reverse (NCollection_Array1< double > &Weights, const int Last) |
| | Reverses the array of poles.
|
| |
| static bool | IsRational (const NCollection_Array1< double > &Weights, const int I1, const int I2, const double Epsilon=0.0) |
| | Returns False if all the weights of the array <Weights> between I1 an I2 are identic. Epsilon is used for comparing weights. If Epsilon is 0. the Epsilon of the first weight is used.
|
| |
| static constexpr int | MaxDegree () |
| | returns the degree maxima for a BSplineCurve.
|
| |
| static void | Eval (const double U, const int Degree, double &Knots, const int Dimension, double &Poles) |
| | Perform the Boor algorithm to evaluate a point at parameter , with <Degree> and <Dimension>.
|
| |
| static void | BoorScheme (const double U, const int Degree, double &Knots, const int Dimension, double &Poles, const int Depth, const int Length) |
| | Performs the Boor Algorithm at parameter with the given <Degree> and the array of <Knots> on the poles <Poles> of dimension <Dimension>. The schema is computed until level <Depth> on a basis of <Length+1> poles.
|
| |
| static bool | AntiBoorScheme (const double U, const int Degree, double &Knots, const int Dimension, double &Poles, const int Depth, const int Length, const double Tolerance) |
| | Compute the content of Pole before the BoorScheme. This method is used to remove poles.
|
| |
| static void | Derivative (const int Degree, double &Knots, const int Dimension, const int Length, const int Order, double &Poles) |
| | Computes the poles of the BSpline giving the derivatives of order <Order>.
|
| |
| static void | Bohm (const double U, const int Degree, const int N, double &Knots, const int Dimension, double &Poles) |
| | Performs the Bohm Algorithm at parameter . This algorithm computes the value and all the derivatives up to order N (N <= Degree).
|
| |
| static NCollection_Array1< double > * | NoWeights () |
| | Used as argument for a non rational curve.
|
| |
| static NCollection_Array1< int > * | NoMults () |
| | Used as argument for a flatknots evaluation.
|
| |
| static constexpr int | MaxUnitWeightsSize () |
| | Returns the maximum number of elements supported by the pre-allocated unit weights array (2049). For sizes larger than this, UnitWeights() will allocate a new array.
|
| |
| static NCollection_Array1< double > | UnitWeights (const int theNbElems) |
| | Returns an NCollection_Array1<double> filled with 1.0 values. If theNbElems <= MaxUnitWeightsSize(), references a pre-allocated global array (zero allocation). Otherwise, allocates a new array and fills with 1.0.
|
| |
| static const double * | UnitWeightsData () |
| | Returns a pointer to the pre-allocated unit weights static array. The array contains MaxUnitWeightsSize() elements, all equal to 1.0.
|
| |
| static void | BuildKnots (const int Degree, const int Index, const bool Periodic, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, double &LK) |
| | Stores in LK the useful knots for the BoorSchem on the span Knots(Index) - Knots(Index+1)
|
| |
| static int | PoleIndex (const int Degree, const int Index, const bool Periodic, const NCollection_Array1< int > &Mults) |
| | Return the index of the first Pole to use on the span Mults(Index) - Mults(Index+1). This index must be added to Poles.Lower().
|
| |
| static void | BuildEval (const int Degree, const int Index, const NCollection_Array1< double > &Poles, const NCollection_Array1< double > *Weights, double &LP) |
| |
| static void | BuildEval (const int Degree, const int Index, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, double &LP) |
| |
| static void | BuildEval (const int Degree, const int Index, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, double &LP) |
| | Copy in <LP> the poles and weights for the Eval scheme. starting from Poles(Poles.Lower()+Index)
|
| |
| static void | BuildBoor (const int Index, const int Length, const int Dimension, const NCollection_Array1< double > &Poles, double &LP) |
| | Copy in <LP> poles for <Dimension> Boor scheme. Starting from <Index> * <Dimension>, copy <Length+1> poles.
|
| |
| static int | BoorIndex (const int Index, const int Length, const int Depth) |
| | Returns the index in the Boor result array of the poles <Index>. If the Boor algorithm was perform with <Length> and <Depth>.
|
| |
| static void | GetPole (const int Index, const int Length, const int Depth, const int Dimension, double &LocPoles, int &Position, NCollection_Array1< double > &Pole) |
| | Copy the pole at position <Index> in the Boor scheme of dimension <Dimension> to <Position> in the array <Pole>. <Position> is updated.
|
| |
| static bool | PrepareInsertKnots (const int Degree, const bool Periodic, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, const NCollection_Array1< double > &AddKnots, const NCollection_Array1< int > *AddMults, int &NbPoles, int &NbKnots, const double Epsilon, const bool Add=true) |
| | Returns in <NbPoles, NbKnots> the new number of poles and knots if the sequence of knots <AddKnots, AddMults> is inserted in the sequence <Knots, Mults>.
|
| |
| static void | InsertKnots (const int Degree, const bool Periodic, const int Dimension, const NCollection_Array1< double > &Poles, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, const NCollection_Array1< double > &AddKnots, const NCollection_Array1< int > *AddMults, NCollection_Array1< double > &NewPoles, NCollection_Array1< double > &NewKnots, NCollection_Array1< int > &NewMults, const double Epsilon, const bool Add=true) |
| |
| static void | InsertKnots (const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, const NCollection_Array1< double > &AddKnots, const NCollection_Array1< int > *AddMults, NCollection_Array1< gp_Pnt > &NewPoles, NCollection_Array1< double > *NewWeights, NCollection_Array1< double > &NewKnots, NCollection_Array1< int > &NewMults, const double Epsilon, const bool Add=true) |
| |
| static void | InsertKnots (const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, const NCollection_Array1< double > &AddKnots, const NCollection_Array1< int > *AddMults, NCollection_Array1< gp_Pnt2d > &NewPoles, NCollection_Array1< double > *NewWeights, NCollection_Array1< double > &NewKnots, NCollection_Array1< int > &NewMults, const double Epsilon, const bool Add=true) |
| | Insert a sequence of knots <AddKnots> with multiplicities <AddMults>. <AddKnots> must be a non decreasing sequence and verifies:
|
| |
| static void | InsertKnot (const int UIndex, const double U, const int UMult, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, NCollection_Array1< gp_Pnt > &NewPoles, NCollection_Array1< double > *NewWeights) |
| |
| static void | InsertKnot (const int UIndex, const double U, const int UMult, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, NCollection_Array1< gp_Pnt2d > &NewPoles, NCollection_Array1< double > *NewWeights) |
| | Insert a new knot U of multiplicity UMult in the knot sequence.
|
| |
| static void | RaiseMultiplicity (const int KnotIndex, const int Mult, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, NCollection_Array1< gp_Pnt > &NewPoles, NCollection_Array1< double > *NewWeights) |
| |
| static void | RaiseMultiplicity (const int KnotIndex, const int Mult, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, NCollection_Array1< gp_Pnt2d > &NewPoles, NCollection_Array1< double > *NewWeights) |
| | Raise the multiplicity of knot to <UMult>.
|
| |
| static bool | RemoveKnot (const int Index, const int Mult, const int Degree, const bool Periodic, const int Dimension, const NCollection_Array1< double > &Poles, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, NCollection_Array1< double > &NewPoles, NCollection_Array1< double > &NewKnots, NCollection_Array1< int > &NewMults, const double Tolerance) |
| |
| static bool | RemoveKnot (const int Index, const int Mult, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, NCollection_Array1< gp_Pnt > &NewPoles, NCollection_Array1< double > *NewWeights, NCollection_Array1< double > &NewKnots, NCollection_Array1< int > &NewMults, const double Tolerance) |
| |
| static bool | RemoveKnot (const int Index, const int Mult, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, NCollection_Array1< gp_Pnt2d > &NewPoles, NCollection_Array1< double > *NewWeights, NCollection_Array1< double > &NewKnots, NCollection_Array1< int > &NewMults, const double Tolerance) |
| | Decrement the multiplicity of <Knots(Index)> to <Mult>. If <Mult> is null the knot is removed.
|
| |
| static int | IncreaseDegreeCountKnots (const int Degree, const int NewDegree, const bool Periodic, const NCollection_Array1< int > &Mults) |
| | Returns the number of knots of a curve with multiplicities <Mults> after elevating the degree from <Degree> to <NewDegree>. See the IncreaseDegree method for more comments.
|
| |
| static void | IncreaseDegree (const int Degree, const int NewDegree, const bool Periodic, const int Dimension, const NCollection_Array1< double > &Poles, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, NCollection_Array1< double > &NewPoles, NCollection_Array1< double > &NewKnots, NCollection_Array1< int > &NewMults) |
| |
| static void | IncreaseDegree (const int Degree, const int NewDegree, const bool Periodic, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, NCollection_Array1< gp_Pnt > &NewPoles, NCollection_Array1< double > *NewWeights, NCollection_Array1< double > &NewKnots, NCollection_Array1< int > &NewMults) |
| |
| static void | IncreaseDegree (const int Degree, const int NewDegree, const bool Periodic, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, NCollection_Array1< gp_Pnt2d > &NewPoles, NCollection_Array1< double > *NewWeights, NCollection_Array1< double > &NewKnots, NCollection_Array1< int > &NewMults) |
| |
| static void | IncreaseDegree (const int NewDegree, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, NCollection_Array1< gp_Pnt > &NewPoles, NCollection_Array1< double > *NewWeights) |
| |
| static void | IncreaseDegree (const int theNewDegree, const NCollection_Array1< gp_Pnt2d > &thePoles, const NCollection_Array1< double > *theWeights, NCollection_Array1< gp_Pnt2d > &theNewPoles, NCollection_Array1< double > *theNewWeights) |
| | Increase the degree of a bspline (or bezier) curve of dimension theDimension form theDegree to theNewDegree.
|
| |
| static void | PrepareUnperiodize (const int Degree, const NCollection_Array1< int > &Mults, int &NbKnots, int &NbPoles) |
| | Set in <NbKnots> and <NbPolesToAdd> the number of Knots and Poles of the NotPeriodic Curve identical at the periodic curve with a degree <Degree>, a knots-distribution with Multiplicities <Mults>.
|
| |
| static void | Unperiodize (const int Degree, const int Dimension, const NCollection_Array1< int > &Mults, const NCollection_Array1< double > &Knots, const NCollection_Array1< double > &Poles, NCollection_Array1< int > &NewMults, NCollection_Array1< double > &NewKnots, NCollection_Array1< double > &NewPoles) |
| |
| static void | Unperiodize (const int Degree, const NCollection_Array1< int > &Mults, const NCollection_Array1< double > &Knots, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, NCollection_Array1< int > &NewMults, NCollection_Array1< double > &NewKnots, NCollection_Array1< gp_Pnt > &NewPoles, NCollection_Array1< double > *NewWeights) |
| |
| static void | Unperiodize (const int Degree, const NCollection_Array1< int > &Mults, const NCollection_Array1< double > &Knots, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, NCollection_Array1< int > &NewMults, NCollection_Array1< double > &NewKnots, NCollection_Array1< gp_Pnt2d > &NewPoles, NCollection_Array1< double > *NewWeights) |
| |
| static void | PrepareTrimming (const int Degree, const bool Periodic, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, const double U1, const double U2, int &NbKnots, int &NbPoles) |
| | Set in <NbKnots> and <NbPoles> the number of Knots and Poles of the curve resulting from the trimming of the BSplinecurve defined with <degree>, <knots>, <mults>
|
| |
| static void | Trimming (const int Degree, const bool Periodic, const int Dimension, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, const NCollection_Array1< double > &Poles, const double U1, const double U2, NCollection_Array1< double > &NewKnots, NCollection_Array1< int > &NewMults, NCollection_Array1< double > &NewPoles) |
| |
| static void | Trimming (const int Degree, const bool Periodic, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const double U1, const double U2, NCollection_Array1< double > &NewKnots, NCollection_Array1< int > &NewMults, NCollection_Array1< gp_Pnt > &NewPoles, NCollection_Array1< double > *NewWeights) |
| |
| static void | Trimming (const int Degree, const bool Periodic, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > &Mults, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const double U1, const double U2, NCollection_Array1< double > &NewKnots, NCollection_Array1< int > &NewMults, NCollection_Array1< gp_Pnt2d > &NewPoles, NCollection_Array1< double > *NewWeights) |
| |
| static void | D0 (const double U, const int Index, const int Degree, const bool Periodic, const NCollection_Array1< double > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, double &P) |
| |
| static void | D0 (const double U, const int Index, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, gp_Pnt &P) |
| |
| static void | D0 (const double U, const int UIndex, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, gp_Pnt2d &P) |
| |
| static void | D0 (const double U, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt &P) |
| |
| static void | D0 (const double U, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt2d &P) |
| |
| static void | D1 (const double U, const int Index, const int Degree, const bool Periodic, const NCollection_Array1< double > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, double &P, double &V) |
| |
| static void | D1 (const double U, const int Index, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, gp_Pnt &P, gp_Vec &V) |
| |
| static void | D1 (const double U, const int UIndex, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, gp_Pnt2d &P, gp_Vec2d &V) |
| |
| static void | D1 (const double U, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt &P, gp_Vec &V) |
| |
| static void | D1 (const double U, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt2d &P, gp_Vec2d &V) |
| |
| static void | D2 (const double U, const int Index, const int Degree, const bool Periodic, const NCollection_Array1< double > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, double &P, double &V1, double &V2) |
| |
| static void | D2 (const double U, const int Index, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, gp_Pnt &P, gp_Vec &V1, gp_Vec &V2) |
| |
| static void | D2 (const double U, const int UIndex, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, gp_Pnt2d &P, gp_Vec2d &V1, gp_Vec2d &V2) |
| |
| static void | D2 (const double U, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt &P, gp_Vec &V1, gp_Vec &V2) |
| |
| static void | D2 (const double U, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt2d &P, gp_Vec2d &V1, gp_Vec2d &V2) |
| |
| static void | D3 (const double U, const int Index, const int Degree, const bool Periodic, const NCollection_Array1< double > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, double &P, double &V1, double &V2, double &V3) |
| |
| static void | D3 (const double U, const int Index, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, gp_Pnt &P, gp_Vec &V1, gp_Vec &V2, gp_Vec &V3) |
| |
| static void | D3 (const double U, const int UIndex, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, gp_Pnt2d &P, gp_Vec2d &V1, gp_Vec2d &V2, gp_Vec2d &V3) |
| |
| static void | D3 (const double U, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt &P, gp_Vec &V1, gp_Vec &V2, gp_Vec &V3) |
| |
| static void | D3 (const double U, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt2d &P, gp_Vec2d &V1, gp_Vec2d &V2, gp_Vec2d &V3) |
| |
| static void | DN (const double U, const int N, const int Index, const int Degree, const bool Periodic, const NCollection_Array1< double > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, double &VN) |
| |
| static void | DN (const double U, const int N, const int Index, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, gp_Vec &VN) |
| |
| static void | DN (const double U, const int N, const int UIndex, const int Degree, const bool Periodic, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &Knots, const NCollection_Array1< int > *Mults, gp_Vec2d &V) |
| |
| static void | DN (const double U, const int N, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > &Weights, gp_Pnt &P, gp_Vec &VN) |
| |
| static void | DN (const double U, const int N, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > &Weights, gp_Pnt2d &P, gp_Vec2d &VN) |
| | The above functions compute values and derivatives in the following situations:
|
| |
| static int | EvalBsplineBasis (const int DerivativeOrder, const int Order, const NCollection_Array1< double > &FlatKnots, const double Parameter, int &FirstNonZeroBsplineIndex, math_Matrix &BsplineBasis, const bool isPeriodic=false) |
| | This evaluates the Bspline Basis at a given parameter Parameter up to the requested DerivativeOrder and store the result in the array BsplineBasis in the following fashion BSplineBasis(1,1) = value of first non vanishing Bspline function which has Index FirstNonZeroBsplineIndex BsplineBasis(1,2) = value of second non vanishing Bspline function which has Index FirstNonZeroBsplineIndex + 1 BsplineBasis(1,n) = value of second non vanishing non vanishing Bspline function which has Index FirstNonZeroBsplineIndex + n (n <= Order) BSplineBasis(2,1) = value of derivative of first non vanishing Bspline function which has Index FirstNonZeroBsplineIndex BSplineBasis(N,1) = value of Nth derivative of first non vanishing Bspline function which has Index FirstNonZeroBsplineIndex if N <= DerivativeOrder + 1.
|
| |
| static int | BuildBSpMatrix (const NCollection_Array1< double > &Parameters, const NCollection_Array1< int > &OrderArray, const NCollection_Array1< double > &FlatKnots, const int Degree, math_Matrix &Matrix, int &UpperBandWidth, int &LowerBandWidth) |
| | This Builds a fully blown Matrix of (ni) Bi (tj)
|
| |
| static int | FactorBandedMatrix (math_Matrix &Matrix, const int UpperBandWidth, const int LowerBandWidth, int &PivotIndexProblem) |
| | this factors the Banded Matrix in the LU form with a Banded storage of components of the L matrix WARNING : do not use if the Matrix is totally positive (It is the case for Bspline matrices build as above with parameters being the Schoenberg points
|
| |
| static int | SolveBandedSystem (const math_Matrix &Matrix, const int UpperBandWidth, const int LowerBandWidth, const int ArrayDimension, double &Array) |
| | This solves the system Matrix.X = B with when Matrix is factored in LU form The Array is an seen as an Array[1..N][1..ArrayDimension] with N = the rank of the matrix Matrix. The result is stored in Array when each coordinate is solved that is B is the array whose values are B[i] = Array[i][p] for each p in 1..ArrayDimension.
|
| |
| static int | SolveBandedSystem (const math_Matrix &Matrix, const int UpperBandWidth, const int LowerBandWidth, NCollection_Array1< gp_Pnt2d > &Array) |
| | This solves the system Matrix.X = B with when Matrix is factored in LU form The Array has the length of the rank of the matrix Matrix. The result is stored in Array when each coordinate is solved that is B is the array whose values are B[i] = Array[i][p] for each p in 1..ArrayDimension.
|
| |
| static int | SolveBandedSystem (const math_Matrix &Matrix, const int UpperBandWidth, const int LowerBandWidth, NCollection_Array1< gp_Pnt > &Array) |
| | This solves the system Matrix.X = B with when Matrix is factored in LU form The Array has the length of the rank of the matrix Matrix. The result is stored in Array when each coordinate is solved that is B is the array whose values are B[i] = Array[i][p] for each p in 1..ArrayDimension.
|
| |
| static int | SolveBandedSystem (const math_Matrix &Matrix, const int UpperBandWidth, const int LowerBandWidth, const bool HomogenousFlag, const int ArrayDimension, double &Array, double &Weights) |
| |
| static int | SolveBandedSystem (const math_Matrix &Matrix, const int UpperBandWidth, const int LowerBandWidth, const bool HomogenousFlag, NCollection_Array1< gp_Pnt2d > &Array, NCollection_Array1< double > &Weights) |
| | This solves the system Matrix.X = B with when Matrix is factored in LU form The Array is an seen as an Array[1..N][1..ArrayDimension] with N = the rank of the matrix Matrix. The result is stored in Array when each coordinate is solved that is B is the array whose values are B[i] = Array[i][p] for each p in 1..ArrayDimension. If HomogeneousFlag == 0 the Poles are multiplied by the Weights upon Entry and once interpolation is carried over the result of the poles are divided by the result of the interpolation of the weights. Otherwise if HomogenousFlag == 1 the Poles and Weights are treated homogeneously that is that those are interpolated as they are and result is returned without division by the interpolated weights.
|
| |
| static int | SolveBandedSystem (const math_Matrix &Matrix, const int UpperBandWidth, const int LowerBandWidth, const bool HomogeneousFlag, NCollection_Array1< gp_Pnt > &Array, NCollection_Array1< double > &Weights) |
| | This solves the system Matrix.X = B with when Matrix is factored in LU form The Array is an seen as an Array[1..N][1..ArrayDimension] with N = the rank of the matrix Matrix. The result is stored in Array when each coordinate is solved that is B is the array whose values are B[i] = Array[i][p] for each p in 1..ArrayDimension If HomogeneousFlag == 0 the Poles are multiplied by the Weights upon Entry and once interpolation is carried over the result of the poles are divided by the result of the interpolation of the weights. Otherwise if HomogenousFlag == 1 the Poles and Weights are treated homogeneously that is that those are interpolated as they are and result is returned without division by the interpolated weights.
|
| |
| static void | MergeBSplineKnots (const double Tolerance, const double StartValue, const double EndValue, const int Degree1, const NCollection_Array1< double > &Knots1, const NCollection_Array1< int > &Mults1, const int Degree2, const NCollection_Array1< double > &Knots2, const NCollection_Array1< int > &Mults2, int &NumPoles, occ::handle< NCollection_HArray1< double > > &NewKnots, occ::handle< NCollection_HArray1< int > > &NewMults) |
| | Merges two knot vector by setting the starting and ending values to StartValue and EndValue.
|
| |
| static void | FunctionReparameterise (const BSplCLib_EvaluatorFunction &Function, const int BSplineDegree, const NCollection_Array1< double > &BSplineFlatKnots, const int PolesDimension, double &Poles, const NCollection_Array1< double > &FlatKnots, const int NewDegree, double &NewPoles, int &theStatus) |
| | This function will compose a given Vectorial BSpline F(t) defined by its BSplineDegree and BSplineFlatKnotsl, its Poles array which are coded as an array of Real of the form [1..NumPoles][1..PolesDimension] with a function a(t) which is assumed to satisfy the following:
|
| |
| static void | FunctionReparameterise (const BSplCLib_EvaluatorFunction &Function, const int BSplineDegree, const NCollection_Array1< double > &BSplineFlatKnots, const NCollection_Array1< double > &Poles, const NCollection_Array1< double > &FlatKnots, const int NewDegree, NCollection_Array1< double > &NewPoles, int &theStatus) |
| | This function will compose a given Vectorial BSpline F(t) defined by its BSplineDegree and BSplineFlatKnotsl, its Poles array which are coded as an array of Real of the form [1..NumPoles][1..PolesDimension] with a function a(t) which is assumed to satisfy the following:
|
| |
| static void | FunctionReparameterise (const BSplCLib_EvaluatorFunction &Function, const int BSplineDegree, const NCollection_Array1< double > &BSplineFlatKnots, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > &FlatKnots, const int NewDegree, NCollection_Array1< gp_Pnt > &NewPoles, int &theStatus) |
| | this will compose a given Vectorial BSpline F(t) defined by its BSplineDegree and BSplineFlatKnotsl, its Poles array which are coded as an array of Real of the form [1..NumPoles][1..PolesDimension] with a function a(t) which is assumed to satisfy the following: 1. F(a(t)) is a polynomial BSpline that can be expressed exactly as a BSpline of degree NewDegree on the knots FlatKnots
|
| |
| static void | FunctionReparameterise (const BSplCLib_EvaluatorFunction &Function, const int BSplineDegree, const NCollection_Array1< double > &BSplineFlatKnots, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > &FlatKnots, const int NewDegree, NCollection_Array1< gp_Pnt2d > &NewPoles, int &theStatus) |
| | this will compose a given Vectorial BSpline F(t) defined by its BSplineDegree and BSplineFlatKnotsl, its Poles array which are coded as an array of Real of the form [1..NumPoles][1..PolesDimension] with a function a(t) which is assumed to satisfy the following: 1. F(a(t)) is a polynomial BSpline that can be expressed exactly as a BSpline of degree NewDegree on the knots FlatKnots
|
| |
| static void | FunctionMultiply (const BSplCLib_EvaluatorFunction &Function, const int BSplineDegree, const NCollection_Array1< double > &BSplineFlatKnots, const int PolesDimension, double &Poles, const NCollection_Array1< double > &FlatKnots, const int NewDegree, double &NewPoles, int &theStatus) |
| | this will multiply a given Vectorial BSpline F(t) defined by its BSplineDegree and BSplineFlatKnotsl, its Poles array which are coded as an array of Real of the form [1..NumPoles][1..PolesDimension] by a function a(t) which is assumed to satisfy the following: 1. a(t) * F(t) is a polynomial BSpline that can be expressed exactly as a BSpline of degree NewDegree on the knots FlatKnots 2. the range of a(t) is the same as the range of F(t) Warning: it is the caller's responsibility to insure that conditions
|
| |
| static void | FunctionMultiply (const BSplCLib_EvaluatorFunction &Function, const int BSplineDegree, const NCollection_Array1< double > &BSplineFlatKnots, const NCollection_Array1< double > &Poles, const NCollection_Array1< double > &FlatKnots, const int NewDegree, NCollection_Array1< double > &NewPoles, int &theStatus) |
| | this will multiply a given Vectorial BSpline F(t) defined by its BSplineDegree and BSplineFlatKnotsl, its Poles array which are coded as an array of Real of the form [1..NumPoles][1..PolesDimension] by a function a(t) which is assumed to satisfy the following: 1. a(t) * F(t) is a polynomial BSpline that can be expressed exactly as a BSpline of degree NewDegree on the knots FlatKnots 2. the range of a(t) is the same as the range of F(t) Warning: it is the caller's responsibility to insure that conditions
|
| |
| static void | FunctionMultiply (const BSplCLib_EvaluatorFunction &Function, const int BSplineDegree, const NCollection_Array1< double > &BSplineFlatKnots, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > &FlatKnots, const int NewDegree, NCollection_Array1< gp_Pnt2d > &NewPoles, int &theStatus) |
| | this will multiply a given Vectorial BSpline F(t) defined by its BSplineDegree and BSplineFlatKnotsl, its Poles array which are coded as an array of Real of the form [1..NumPoles][1..PolesDimension] by a function a(t) which is assumed to satisfy the following: 1. a(t) * F(t) is a polynomial BSpline that can be expressed exactly as a BSpline of degree NewDegree on the knots FlatKnots 2. the range of a(t) is the same as the range of F(t) Warning: it is the caller's responsibility to insure that conditions
|
| |
| static void | FunctionMultiply (const BSplCLib_EvaluatorFunction &Function, const int BSplineDegree, const NCollection_Array1< double > &BSplineFlatKnots, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > &FlatKnots, const int NewDegree, NCollection_Array1< gp_Pnt > &NewPoles, int &theStatus) |
| | this will multiply a given Vectorial BSpline F(t) defined by its BSplineDegree and BSplineFlatKnotsl, its Poles array which are coded as an array of Real of the form [1..NumPoles][1..PolesDimension] by a function a(t) which is assumed to satisfy the following: 1. a(t) * F(t) is a polynomial BSpline that can be expressed exactly as a BSpline of degree NewDegree on the knots FlatKnots 2. the range of a(t) is the same as the range of F(t) Warning: it is the caller's responsibility to insure that conditions
|
| |
| static void | Eval (const double U, const bool PeriodicFlag, const int DerivativeRequest, int &ExtrapMode, const int Degree, const NCollection_Array1< double > &FlatKnots, const int ArrayDimension, double &Poles, double &Result) |
| | Perform the De Boor algorithm to evaluate a point at parameter , with <Degree> and <Dimension>.
|
| |
| static void | Eval (const double U, const bool PeriodicFlag, const int DerivativeRequest, int &ExtrapMode, const int Degree, const NCollection_Array1< double > &FlatKnots, const int ArrayDimension, double &Poles, double &Weights, double &PolesResult, double &WeightsResult) |
| | Perform the De Boor algorithm to evaluate a point at parameter , with <Degree> and <Dimension>. Evaluates by multiplying the Poles by the Weights and gives the homogeneous result in PolesResult that is the results of the evaluation of the numerator once it has been multiplied by the weights and in WeightsResult one has the result of the evaluation of the denominator.
|
| |
| static void | Eval (const double U, const bool PeriodicFlag, const bool HomogeneousFlag, int &ExtrapMode, const int Degree, const NCollection_Array1< double > &FlatKnots, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > &Weights, gp_Pnt &Point, double &Weight) |
| | Perform the evaluation of the Bspline Basis and then multiplies by the weights this just evaluates the current point.
|
| |
| static void | Eval (const double U, const bool PeriodicFlag, const bool HomogeneousFlag, int &ExtrapMode, const int Degree, const NCollection_Array1< double > &FlatKnots, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > &Weights, gp_Pnt2d &Point, double &Weight) |
| | Perform the evaluation of the Bspline Basis and then multiplies by the weights this just evaluates the current point.
|
| |
| static void | TangExtendToConstraint (const NCollection_Array1< double > &FlatKnots, const double C1Coefficient, const int NumPoles, double &Poles, const int Dimension, const int Degree, const NCollection_Array1< double > &ConstraintPoint, const int Continuity, const bool After, int &NbPolesResult, int &NbKnotsRsult, double &KnotsResult, double &PolesResult) |
| | Extend a BSpline nD using the tangency map <C1Coefficient> is the coefficient of reparametrisation <Continuity> must be equal to 1, 2 or 3. <Degree> must be greater or equal than <Continuity> + 1.
|
| |
| static void | CacheD0 (const double U, const int Degree, const double CacheParameter, const double SpanLenght, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt &Point) |
| | Perform the evaluation of the of the cache the parameter must be normalized between the 0 and 1 for the span. The Cache must be valid when calling this routine. Geom Package will insure that. and then multiplies by the weights this just evaluates the current point the CacheParameter is where the Cache was constructed the SpanLength is to normalize the polynomial in the cache to avoid bad conditioning effects.
|
| |
| static void | CacheD0 (const double U, const int Degree, const double CacheParameter, const double SpanLenght, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt2d &Point) |
| | Perform the evaluation of the Bspline Basis and then multiplies by the weights this just evaluates the current point the parameter must be normalized between the 0 and 1 for the span. The Cache must be valid when calling this routine. Geom Package will insure that. and then multiplies by the weights ththe CacheParameter is where the Cache was constructed the SpanLength is to normalize the polynomial in the cache to avoid bad conditioning effectsis just evaluates the current point.
|
| |
| static void | CoefsD0 (const double U, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt &Point) |
| | Calls CacheD0 for Bezier Curves Arrays computed with the method PolesCoefficients. Warning: To be used for Beziercurves ONLY!!!
|
| |
| static void | CoefsD0 (const double U, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt2d &Point) |
| | Calls CacheD0 for Bezier Curves Arrays computed with the method PolesCoefficients. Warning: To be used for Beziercurves ONLY!!!
|
| |
| static void | CacheD1 (const double U, const int Degree, const double CacheParameter, const double SpanLenght, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt &Point, gp_Vec &Vec) |
| | Perform the evaluation of the of the cache the parameter must be normalized between the 0 and 1 for the span. The Cache must be valid when calling this routine. Geom Package will insure that. and then multiplies by the weights this just evaluates the current point the CacheParameter is where the Cache was constructed the SpanLength is to normalize the polynomial in the cache to avoid bad conditioning effects.
|
| |
| static void | CacheD1 (const double U, const int Degree, const double CacheParameter, const double SpanLenght, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt2d &Point, gp_Vec2d &Vec) |
| | Perform the evaluation of the Bspline Basis and then multiplies by the weights this just evaluates the current point the parameter must be normalized between the 0 and 1 for the span. The Cache must be valid when calling this routine. Geom Package will insure that. and then multiplies by the weights ththe CacheParameter is where the Cache was constructed the SpanLength is to normalize the polynomial in the cache to avoid bad conditioning effectsis just evaluates the current point.
|
| |
| static void | CoefsD1 (const double U, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt &Point, gp_Vec &Vec) |
| | Calls CacheD1 for Bezier Curves Arrays computed with the method PolesCoefficients. Warning: To be used for Beziercurves ONLY!!!
|
| |
| static void | CoefsD1 (const double U, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt2d &Point, gp_Vec2d &Vec) |
| | Calls CacheD1 for Bezier Curves Arrays computed with the method PolesCoefficients. Warning: To be used for Beziercurves ONLY!!!
|
| |
| static void | CacheD2 (const double U, const int Degree, const double CacheParameter, const double SpanLenght, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt &Point, gp_Vec &Vec1, gp_Vec &Vec2) |
| | Perform the evaluation of the of the cache the parameter must be normalized between the 0 and 1 for the span. The Cache must be valid when calling this routine. Geom Package will insure that. and then multiplies by the weights this just evaluates the current point the CacheParameter is where the Cache was constructed the SpanLength is to normalize the polynomial in the cache to avoid bad conditioning effects.
|
| |
| static void | CacheD2 (const double U, const int Degree, const double CacheParameter, const double SpanLenght, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt2d &Point, gp_Vec2d &Vec1, gp_Vec2d &Vec2) |
| | Perform the evaluation of the Bspline Basis and then multiplies by the weights this just evaluates the current point the parameter must be normalized between the 0 and 1 for the span. The Cache must be valid when calling this routine. Geom Package will insure that. and then multiplies by the weights ththe CacheParameter is where the Cache was constructed the SpanLength is to normalize the polynomial in the cache to avoid bad conditioning effectsis just evaluates the current point.
|
| |
| static void | CoefsD2 (const double U, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt &Point, gp_Vec &Vec1, gp_Vec &Vec2) |
| | Calls CacheD1 for Bezier Curves Arrays computed with the method PolesCoefficients. Warning: To be used for Beziercurves ONLY!!!
|
| |
| static void | CoefsD2 (const double U, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt2d &Point, gp_Vec2d &Vec1, gp_Vec2d &Vec2) |
| | Calls CacheD1 for Bezier Curves Arrays computed with the method PolesCoefficients. Warning: To be used for Beziercurves ONLY!!!
|
| |
| static void | CacheD3 (const double U, const int Degree, const double CacheParameter, const double SpanLenght, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt &Point, gp_Vec &Vec1, gp_Vec &Vec2, gp_Vec &Vec3) |
| | Perform the evaluation of the of the cache the parameter must be normalized between the 0 and 1 for the span. The Cache must be valid when calling this routine. Geom Package will insure that. and then multiplies by the weights this just evaluates the current point the CacheParameter is where the Cache was constructed the SpanLength is to normalize the polynomial in the cache to avoid bad conditioning effects.
|
| |
| static void | CacheD3 (const double U, const int Degree, const double CacheParameter, const double SpanLenght, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt2d &Point, gp_Vec2d &Vec1, gp_Vec2d &Vec2, gp_Vec2d &Vec3) |
| | Perform the evaluation of the Bspline Basis and then multiplies by the weights this just evaluates the current point the parameter must be normalized between the 0 and 1 for the span. The Cache must be valid when calling this routine. Geom Package will insure that. and then multiplies by the weights ththe CacheParameter is where the Cache was constructed the SpanLength is to normalize the polynomial in the cache to avoid bad conditioning effectsis just evaluates the current point.
|
| |
| static void | CoefsD3 (const double U, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt &Point, gp_Vec &Vec1, gp_Vec &Vec2, gp_Vec &Vec3) |
| | Calls CacheD1 for Bezier Curves Arrays computed with the method PolesCoefficients. Warning: To be used for Beziercurves ONLY!!!
|
| |
| static void | CoefsD3 (const double U, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, gp_Pnt2d &Point, gp_Vec2d &Vec1, gp_Vec2d &Vec2, gp_Vec2d &Vec3) |
| | Calls CacheD1 for Bezier Curves Arrays computed with the method PolesCoefficients. Warning: To be used for Beziercurves ONLY!!!
|
| |
| static void | BuildCache (const double U, const double InverseOfSpanDomain, const bool PeriodicFlag, const int Degree, const NCollection_Array1< double > &FlatKnots, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, NCollection_Array1< gp_Pnt > &CachePoles, NCollection_Array1< double > *CacheWeights) |
| | Perform the evaluation of the Taylor expansion of the Bspline normalized between 0 and 1. If rational computes the homogeneous Taylor expansion for the numerator and stores it in CachePoles.
|
| |
| static void | BuildCache (const double U, const double InverseOfSpanDomain, const bool PeriodicFlag, const int Degree, const NCollection_Array1< double > &FlatKnots, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, NCollection_Array1< gp_Pnt2d > &CachePoles, NCollection_Array1< double > *CacheWeights) |
| | Perform the evaluation of the Taylor expansion of the Bspline normalized between 0 and 1. If rational computes the homogeneous Taylor expansion for the numerator and stores it in CachePoles.
|
| |
| static void | BuildCache (const double theParameter, const double theSpanDomain, const bool thePeriodicFlag, const int theDegree, const int theSpanIndex, const NCollection_Array1< double > &theFlatKnots, const NCollection_Array1< gp_Pnt > &thePoles, const NCollection_Array1< double > *theWeights, NCollection_Array2< double > &theCacheArray) |
| | Perform the evaluation of the Taylor expansion of the Bspline normalized between 0 and 1. Structure of result optimized for BSplCLib_Cache.
|
| |
| static void | BuildCache (const double theParameter, const double theSpanDomain, const bool thePeriodicFlag, const int theDegree, const int theSpanIndex, const NCollection_Array1< double > &theFlatKnots, const NCollection_Array1< gp_Pnt2d > &thePoles, const NCollection_Array1< double > *theWeights, NCollection_Array2< double > &theCacheArray) |
| | Perform the evaluation of the Taylor expansion of the Bspline normalized between 0 and 1. Structure of result optimized for BSplCLib_Cache.
|
| |
| static void | PolesCoefficients (const NCollection_Array1< gp_Pnt2d > &Poles, NCollection_Array1< gp_Pnt2d > &CachePoles) |
| |
| static void | PolesCoefficients (const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, NCollection_Array1< gp_Pnt2d > &CachePoles, NCollection_Array1< double > *CacheWeights) |
| |
| static void | PolesCoefficients (const NCollection_Array1< gp_Pnt > &Poles, NCollection_Array1< gp_Pnt > &CachePoles) |
| |
| static void | PolesCoefficients (const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, NCollection_Array1< gp_Pnt > &CachePoles, NCollection_Array1< double > *CacheWeights) |
| | Encapsulation of BuildCache to perform the evaluation of the Taylor expansion for beziercurves at parameter 0. Warning: To be used for Beziercurves ONLY!!!
|
| |
| static const double & | FlatBezierKnots (const int Degree) |
| | Returns pointer to statically allocated array representing flat knots for bezier curve of the specified degree. Raises OutOfRange if Degree > MaxDegree()
|
| |
| static void | BuildSchoenbergPoints (const int Degree, const NCollection_Array1< double > &FlatKnots, NCollection_Array1< double > &Parameters) |
| | builds the Schoenberg points from the flat knot used to interpolate a BSpline since the BSpline matrix is invertible.
|
| |
| static void | Interpolate (const int Degree, const NCollection_Array1< double > &FlatKnots, const NCollection_Array1< double > &Parameters, const NCollection_Array1< int > &ContactOrderArray, NCollection_Array1< gp_Pnt > &Poles, int &InversionProblem) |
| | Performs the interpolation of the data given in the Poles array according to the requests in ContactOrderArray that is: if ContactOrderArray(i) has value d it means that Poles(i) contains the dth derivative of the function to be interpolated. The length L of the following arrays must be the same: Parameters, ContactOrderArray, Poles, The length of FlatKnots is Degree + L + 1 Warning: the method used to do that interpolation is gauss elimination WITHOUT pivoting. Thus if the diagonal is not dominant there is no guarantee that the algorithm will work. Nevertheless for Cubic interpolation or interpolation at Scheonberg points the method will work The InversionProblem will report 0 if there was no problem else it will give the index of the faulty pivot.
|
| |
| static void | Interpolate (const int Degree, const NCollection_Array1< double > &FlatKnots, const NCollection_Array1< double > &Parameters, const NCollection_Array1< int > &ContactOrderArray, NCollection_Array1< gp_Pnt2d > &Poles, int &InversionProblem) |
| | Performs the interpolation of the data given in the Poles array according to the requests in ContactOrderArray that is: if ContactOrderArray(i) has value d it means that Poles(i) contains the dth derivative of the function to be interpolated. The length L of the following arrays must be the same: Parameters, ContactOrderArray, Poles, The length of FlatKnots is Degree + L + 1 Warning: the method used to do that interpolation is gauss elimination WITHOUT pivoting. Thus if the diagonal is not dominant there is no guarantee that the algorithm will work. Nevertheless for Cubic interpolation at knots or interpolation at Scheonberg points the method will work. The InversionProblem will report 0 if there was no problem else it will give the index of the faulty pivot.
|
| |
| static void | Interpolate (const int Degree, const NCollection_Array1< double > &FlatKnots, const NCollection_Array1< double > &Parameters, const NCollection_Array1< int > &ContactOrderArray, NCollection_Array1< gp_Pnt > &Poles, NCollection_Array1< double > &Weights, int &InversionProblem) |
| | Performs the interpolation of the data given in the Poles array according to the requests in ContactOrderArray that is: if ContactOrderArray(i) has value d it means that Poles(i) contains the dth derivative of the function to be interpolated. The length L of the following arrays must be the same: Parameters, ContactOrderArray, Poles, The length of FlatKnots is Degree + L + 1 Warning: the method used to do that interpolation is gauss elimination WITHOUT pivoting. Thus if the diagonal is not dominant there is no guarantee that the algorithm will work. Nevertheless for Cubic interpolation at knots or interpolation at Scheonberg points the method will work. The InversionProblem will report 0 if there was no problem else it will give the index of the faulty pivot.
|
| |
| static void | Interpolate (const int Degree, const NCollection_Array1< double > &FlatKnots, const NCollection_Array1< double > &Parameters, const NCollection_Array1< int > &ContactOrderArray, NCollection_Array1< gp_Pnt2d > &Poles, NCollection_Array1< double > &Weights, int &InversionProblem) |
| | Performs the interpolation of the data given in the Poles array according to the requests in ContactOrderArray that is: if ContactOrderArray(i) has value d it means that Poles(i) contains the dth derivative of the function to be interpolated. The length L of the following arrays must be the same: Parameters, ContactOrderArray, Poles, The length of FlatKnots is Degree + L + 1 Warning: the method used to do that interpolation is gauss elimination WITHOUT pivoting. Thus if the diagonal is not dominant there is no guarantee that the algorithm will work. Nevertheless for Cubic interpolation at knots or interpolation at Scheonberg points the method will work. The InversionProblem will report 0 if there was no problem else it will give the i.
|
| |
| static void | Interpolate (const int Degree, const NCollection_Array1< double > &FlatKnots, const NCollection_Array1< double > &Parameters, const NCollection_Array1< int > &ContactOrderArray, const int ArrayDimension, double &Poles, int &InversionProblem) |
| | Performs the interpolation of the data given in the Poles array according to the requests in ContactOrderArray that is: if ContactOrderArray(i) has value d it means that Poles(i) contains the dth derivative of the function to be interpolated. The length L of the following arrays must be the same: Parameters, ContactOrderArray The length of FlatKnots is Degree + L + 1 The PolesArray is an seen as an Array[1..N][1..ArrayDimension] with N = tge length of the parameters array Warning: the method used to do that interpolation is gauss elimination WITHOUT pivoting. Thus if the diagonal is not dominant there is no guarantee that the algorithm will work. Nevertheless for Cubic interpolation or interpolation at Scheonberg points the method will work The InversionProblem will report 0 if there was no problem else it will give the index of the faulty pivot.
|
| |
| static void | Interpolate (const int Degree, const NCollection_Array1< double > &FlatKnots, const NCollection_Array1< double > &Parameters, const NCollection_Array1< int > &ContactOrderArray, const int ArrayDimension, double &Poles, double &Weights, int &InversionProblem) |
| |
| static void | MovePoint (const double U, const gp_Vec2d &Displ, const int Index1, const int Index2, const int Degree, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &FlatKnots, int &FirstIndex, int &LastIndex, NCollection_Array1< gp_Pnt2d > &NewPoles) |
| | Find the new poles which allows an old point (with a given as parameter) to reach a new position Index1 and Index2 indicate the range of poles we can move (1, NbPoles-1) or (2, NbPoles) -> no constraint for one side don't enter (1,NbPoles) -> error: rigid move (2, NbPoles-1) -> the ends are enforced (3, NbPoles-2) -> the ends and the tangency are enforced if Problem in BSplineBasis calculation, no change for the curve and FirstIndex, LastIndex = 0.
|
| |
| static void | MovePoint (const double U, const gp_Vec &Displ, const int Index1, const int Index2, const int Degree, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &FlatKnots, int &FirstIndex, int &LastIndex, NCollection_Array1< gp_Pnt > &NewPoles) |
| | Find the new poles which allows an old point (with a given as parameter) to reach a new position Index1 and Index2 indicate the range of poles we can move (1, NbPoles-1) or (2, NbPoles) -> no constraint for one side don't enter (1,NbPoles) -> error: rigid move (2, NbPoles-1) -> the ends are enforced (3, NbPoles-2) -> the ends and the tangency are enforced if Problem in BSplineBasis calculation, no change for the curve and FirstIndex, LastIndex = 0.
|
| |
| static void | MovePointAndTangent (const double U, const int ArrayDimension, double &Delta, double &DeltaDerivative, const double Tolerance, const int Degree, const int StartingCondition, const int EndingCondition, double &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &FlatKnots, double &NewPoles, int &ErrorStatus) |
| | This is the dimension free version of the utility U is the parameter must be within the first FlatKnots and the last FlatKnots Delta is the amount the curve has to be moved DeltaDerivative is the amount the derivative has to be moved. Delta and DeltaDerivative must be array of dimension ArrayDimension Degree is the degree of the BSpline and the FlatKnots are the knots of the BSpline Starting Condition if = -1 means the starting point of the curve can move = 0 means the starting point of the curve cannot move but tangent starting point of the curve cannot move = 1 means the starting point and tangents cannot move = 2 means the starting point tangent and curvature cannot move = ... Same holds for EndingCondition Poles are the poles of the curve Weights are the weights of the curve if not NULL NewPoles are the poles of the deformed curve ErrorStatus will be 0 if no error happened 1 if there are not enough knots/poles the imposed conditions The way to solve this problem is to add knots to the BSpline If StartCondition = 1 and EndCondition = 1 then you need at least 4 + 2 = 6 poles so for example to have a C1 cubic you will need have at least 2 internal knots.
|
| |
| static void | MovePointAndTangent (const double U, const gp_Vec &Delta, const gp_Vec &DeltaDerivative, const double Tolerance, const int Degree, const int StartingCondition, const int EndingCondition, const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &FlatKnots, NCollection_Array1< gp_Pnt > &NewPoles, int &ErrorStatus) |
| | This is the dimension free version of the utility U is the parameter must be within the first FlatKnots and the last FlatKnots Delta is the amount the curve has to be moved DeltaDerivative is the amount the derivative has to be moved. Delta and DeltaDerivative must be array of dimension ArrayDimension Degree is the degree of the BSpline and the FlatKnots are the knots of the BSpline Starting Condition if = -1 means the starting point of the curve can move = 0 means the starting point of the curve cannot move but tangent starting point of the curve cannot move = 1 means the starting point and tangents cannot move = 2 means the starting point tangent and curvature cannot move = ... Same holds for EndingCondition Poles are the poles of the curve Weights are the weights of the curve if not NULL NewPoles are the poles of the deformed curve ErrorStatus will be 0 if no error happened 1 if there are not enough knots/poles the imposed conditions The way to solve this problem is to add knots to the BSpline If StartCondition = 1 and EndCondition = 1 then you need at least 4 + 2 = 6 poles so for example to have a C1 cubic you will need have at least 2 internal knots.
|
| |
| static void | MovePointAndTangent (const double U, const gp_Vec2d &Delta, const gp_Vec2d &DeltaDerivative, const double Tolerance, const int Degree, const int StartingCondition, const int EndingCondition, const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &FlatKnots, NCollection_Array1< gp_Pnt2d > &NewPoles, int &ErrorStatus) |
| | This is the dimension free version of the utility U is the parameter must be within the first FlatKnots and the last FlatKnots Delta is the amount the curve has to be moved DeltaDerivative is the amount the derivative has to be moved. Delta and DeltaDerivative must be array of dimension ArrayDimension Degree is the degree of the BSpline and the FlatKnots are the knots of the BSpline Starting Condition if = -1 means the starting point of the curve can move = 0 means the starting point of the curve cannot move but tangent starting point of the curve cannot move = 1 means the starting point and tangents cannot move = 2 means the starting point tangent and curvature cannot move = ... Same holds for EndingCondition Poles are the poles of the curve Weights are the weights of the curve if not NULL NewPoles are the poles of the deformed curve ErrorStatus will be 0 if no error happened 1 if there are not enough knots/poles the imposed conditions The way to solve this problem is to add knots to the BSpline If StartCondition = 1 and EndCondition = 1 then you need at least 4 + 2 = 6 poles so for example to have a C1 cubic you will need have at least 2 internal knots.
|
| |
| static void | Resolution (double &PolesArray, const int ArrayDimension, const int NumPoles, const NCollection_Array1< double > *Weights, const NCollection_Array1< double > &FlatKnots, const int Degree, const double Tolerance3D, double &UTolerance) |
| | given a tolerance in 3D space returns a tolerance in U parameter space such that all u1 and u0 in the domain of the curve f(u) | u1 - u0 | < UTolerance and we have |f (u1) - f (u0)| < Tolerance3D
|
| |
| static void | Resolution (const NCollection_Array1< gp_Pnt > &Poles, const NCollection_Array1< double > *Weights, const int NumPoles, const NCollection_Array1< double > &FlatKnots, const int Degree, const double Tolerance3D, double &UTolerance) |
| | given a tolerance in 3D space returns a tolerance in U parameter space such that all u1 and u0 in the domain of the curve f(u) | u1 - u0 | < UTolerance and we have |f (u1) - f (u0)| < Tolerance3D
|
| |
| static void | Resolution (const NCollection_Array1< gp_Pnt2d > &Poles, const NCollection_Array1< double > *Weights, const int NumPoles, const NCollection_Array1< double > &FlatKnots, const int Degree, const double Tolerance3D, double &UTolerance) |
| | given a tolerance in 3D space returns a tolerance in U parameter space such that all u1 and u0 in the domain of the curve f(u) | u1 - u0 | < UTolerance and we have |f (u1) - f (u0)| < Tolerance3D
|
| |
| static int | Intervals (const NCollection_Array1< double > &theKnots, const NCollection_Array1< int > &theMults, int theDegree, bool isPeriodic, int theContinuity, double theFirst, double theLast, double theTolerance, NCollection_Array1< double > *theIntervals) |
| | Splits the given range to BSpline intervals of given continuity.
|
| |