1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0031939: Coding - correction of spelling errors in comments

Fix various typos

Fixed via `codespell v2.0.dev`
This commit is contained in:
luz paz
2020-11-13 10:46:02 -05:00
committed by bugmaster
parent 81ff49158a
commit 21c7c45701
262 changed files with 488 additions and 488 deletions

View File

@@ -687,7 +687,7 @@ void Geom2d_BSplineCurve::Segment(const Standard_Real aU1,
TColStd_Array1OfReal Knots(1,2);
TColStd_Array1OfInteger Mults(1,2);
//
// define param ditance to keep (eap, Apr 18 2002, occ311)
// define param distance to keep (eap, Apr 18 2002, occ311)
if (periodic) {
Standard_Real Period = LastParameter() - FirstParameter();
DU = U2 - U1;

View File

@@ -157,7 +157,7 @@ public:
//! 1 <= Mults(i) <= Degree
//!
//! On a non periodic curve the first and last multiplicities
//! may be Degree+1 (this is even recommanded if you want the
//! may be Degree+1 (this is even recommended if you want the
//! curve to start and finish on the first and last pole).
//!
//! On a periodic curve the first and the last multicities
@@ -184,7 +184,7 @@ public:
//! 1 <= Mults(i) <= Degree
//!
//! On a non periodic curve the first and last multiplicities
//! may be Degree+1 (this is even recommanded if you want the
//! may be Degree+1 (this is even recommended if you want the
//! curve to start and finish on the first and last pole).
//!
//! On a periodic curve the first and the last multicities

View File

@@ -114,7 +114,7 @@ Standard_Boolean Geom2d_BSplineCurve::IsG1 ( const Standard_Real theTf,
if( ((aFirstParam - theTf)*(theTl - aFirstParam) < 0.0) &&
((aLastParam - theTf)*(theTl - aLastParam) < 0.0))
{
//Range [theTf, theTl] does not intersect curve bounadries
//Range [theTf, theTl] does not intersect curve boundaries
return Standard_True;
}

View File

@@ -131,7 +131,7 @@ public:
//! Some Curves such as OffsetCurve can be closed or not. These curves
//! are considered as closed if the distance between the first point
//! and the last point of the curve is lower or equal to the Resolution
//! from package gp wich is a fixed criterion independant of the
//! from package gp which is a fixed criterion independant of the
//! application.
Standard_EXPORT virtual Standard_Boolean IsClosed() const = 0;