mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +03:00
0031939: Coding - correction of spelling errors in comments [part 5]
Fix various typos Fixed via `codespell v2.1.dev
This commit is contained in:
@@ -1186,7 +1186,7 @@ void BSplCLib::Bohm(const Standard_Real U,
|
||||
const Standard_Integer Dimension,
|
||||
Standard_Real& Poles)
|
||||
{
|
||||
// First phase independant of U, compute the poles of the derivatives
|
||||
// First phase independent of U, compute the poles of the derivatives
|
||||
Standard_Integer i,j,iDim,min,Dmi,DDmi,jDmi,Degm1;
|
||||
Standard_Real *knot = &Knots, *pole, coef, *tbis, *psav, *psDD, *psDDmDim;
|
||||
psav = &Poles;
|
||||
@@ -1816,7 +1816,7 @@ Standard_Boolean BSplCLib::PrepareInsertKnots
|
||||
}
|
||||
|
||||
if (Periodic) {
|
||||
//for periodic B-Spline the requirement is that multiplicites of the first
|
||||
//for periodic B-Spline the requirement is that multiplicities of the first
|
||||
//and last knots must be equal (see Geom_BSplineCurve constructor for
|
||||
//instance);
|
||||
//respectively AddMults() must meet this requirement if AddKnots() contains
|
||||
@@ -2677,7 +2677,7 @@ void BSplCLib::PrepareUnperiodize
|
||||
NbKnots++;
|
||||
}
|
||||
// We must add exactly until Degree + 1 ->
|
||||
// Supress the excedent.
|
||||
// Suppress the excedent.
|
||||
if ( sigma > Degree + 1)
|
||||
NbPoles -= sigma - Degree - 1;
|
||||
|
||||
@@ -2693,7 +2693,7 @@ void BSplCLib::PrepareUnperiodize
|
||||
NbKnots++;
|
||||
}
|
||||
// We must add exactly until Degree + 1 ->
|
||||
// Supress the excedent.
|
||||
// Suppress the excedent.
|
||||
if ( sigma > Degree + 1)
|
||||
NbPoles -= sigma - Degree - 1;
|
||||
}
|
||||
|
@@ -383,7 +383,7 @@ public:
|
||||
//! Used as argument for a flatknots evaluation.
|
||||
static TColStd_Array1OfInteger* NoMults();
|
||||
|
||||
//! Stores in LK the usefull knots for the BoorSchem
|
||||
//! Stores in LK the useful knots for the BoorSchem
|
||||
//! on the span Knots(Index) - Knots(Index+1)
|
||||
Standard_EXPORT static void BuildKnots (const Standard_Integer Degree, const Standard_Integer Index, const Standard_Boolean Periodic, const TColStd_Array1OfReal& Knots, const TColStd_Array1OfInteger* Mults, Standard_Real& LK);
|
||||
|
||||
|
@@ -620,7 +620,7 @@ BSplCLib::SolveBandedSystem(const math_Matrix& Matrix,
|
||||
// will be homogeneous that is no division or multiplication
|
||||
// by weigths will happen. On the contrary if HomogeneousFlag
|
||||
// is 0 then the poles will be multiplied first by the weights
|
||||
// and after interpolation they will be devided by the weights
|
||||
// and after interpolation they will be divided by the weights
|
||||
//=======================================================================
|
||||
|
||||
Standard_Integer
|
||||
|
Reference in New Issue
Block a user