1
0
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:
luz paz
2020-12-21 11:48:18 +03:00
committed by bugmaster
parent 3b1129a546
commit b81b237fa4
165 changed files with 413 additions and 455 deletions

View File

@@ -20,7 +20,7 @@
// calculate the total length of the curve
// calculate an approached point by assimilating the curve to a staight line
// calculate the length of the curve between the start point and the approached point
// by succsessive iteration find the point and its associated parameter
// by successive iteration find the point and its associated parameter
// call to FunctionRoot
#include <Adaptor2d_Curve2d.hxx>

View File

@@ -144,9 +144,9 @@ public:
Standard_EXPORT void Perform (const Standard_Real Abscissa, const Standard_Real U0, const Standard_Real Ui, const Standard_Real Resolution);
//! Computes the point at the distance <Abscissa> of
//! the curve; performs more appropriate tolerance managment;
//! the curve; performs more appropriate tolerance management;
//! to use this method in right way it is necessary to call
//! empty consructor. then call method Init with
//! empty constructor. then call method Init with
//! Tolerance = Resolution, then call AdvPermorm.
//! U0 is the parameter of the point from which the distance
//! is measured and Ui is the starting value for the iterative

View File

@@ -30,7 +30,7 @@ void CPnts_MyRootFunction::Init(const Standard_Real X0,
{
myX0 = X0;
myL = L;
myTol = -1; //to supress the tolerance
myTol = -1; //to suppress the tolerance
}
void CPnts_MyRootFunction::Init(const Standard_Real X0,

View File

@@ -144,7 +144,7 @@ void CPnts_UniformDeflection::Perform()
NormD2 = V2.CrossMagnitude(V1) / NormD1;
// passing of arrow starting from which the redivision is done is arbitrary
// probably it will be necessary to readjust it (differenciate the first point
// probably it will be necessary to readjust it (differentiate the first point
// from the others) this test does not work on the points of inflexion
if (NormD2 > myDeflection / 5.0) {