1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-19 13:40:49 +03:00

0031939: Coding - correction of spelling errors in comments [part 6]

Fix various typos

Fixed via `codespell v2.1.dev
This commit is contained in:
luz paz
2021-01-11 12:29:28 +03:00
committed by bugmaster
parent 83746de803
commit 54adc5e979
162 changed files with 295 additions and 294 deletions

View File

@@ -57,7 +57,7 @@ class gp_Pnt2d;
//! inside a curve Cu2 with a radius Radius and a
//! tolerance Tolerance.
//! If we did not used Tolerance it is impossible to
//! find a solution in the the following case : Cu2 is
//! find a solution in the following case : Cu2 is
//! inside C1 and there is no intersection point
//! between the two elements.
//! with Tolerance we will give a solution if the

View File

@@ -52,7 +52,7 @@ class gp_Pnt2d;
//! We want to create a circle tangent to an EnclosedCurv C1
//! with a tolerance Tolerance.
//! If we did not used Tolerance it is impossible to
//! find a solution in the the following case : Pcenter is
//! find a solution in the following case : Pcenter is
//! outside C1.
//! With Tolerance we will give a solution if the distance
//! between C1 and Pcenter is lower than or equal Tolerance/2.

View File

@@ -58,7 +58,7 @@ class gp_Pnt2d;
//! centered on a line OnLine with a radius Radius and with
//! a tolerance Tolerance.
//! If we did not used Tolerance it is impossible to
//! find a solution in the the following case : OnLine is
//! find a solution in the following case : OnLine is
//! outside Cu1. There is no intersection point between Cu1
//! and OnLine. The distance between the line and the
//! circle is greater than Radius.

View File

@@ -39,7 +39,7 @@ class math_Matrix;
//! This abstract class describes a set on N Functions of
//! M independant variables.
//! M independent variables.
class Geom2dGcc_FunctionTanCuCuCu : public math_FunctionSetWithDerivatives
{
public:

View File

@@ -41,7 +41,7 @@ class math_Matrix;
//! This abstract class describes a set on N Functions of
//! M independant variables.
//! M independent variables.
class Geom2dGcc_FunctionTanCuCuOnCu : public math_FunctionSetWithDerivatives
{
public:

View File

@@ -58,7 +58,7 @@ public:
Standard_EXPORT Geom2dGcc_Lin2d2TanIter(const Geom2dGcc_QCurve& Qualified1, const gp_Pnt2d& ThePoint, const Standard_Real Param1, const Standard_Real Tolang);
//! This class implements the algorithms used to create 2d
//! line tangent to a circle and to a cuve.
//! line tangent to a circle and to a curve.
//! Tolang is used to determine the tolerance for the
//! tangency points.
//! Param2 is used for the initial guess on the curve.