1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-03 14:10:33 +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

@@ -137,7 +137,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 which is a fixed criterion independant of the
//! from package gp which is a fixed criterion independent of the
//! application.
Standard_EXPORT virtual Standard_Boolean IsClosed() const = 0;

View File

@@ -152,12 +152,12 @@ public:
//! Raised if Row < 1 or Row > 3 or Col < 1 or Col > 4
Standard_Real Value (const Standard_Integer theRow, const Standard_Integer theCol) const { return gpTrsf.Value (theRow, theCol); }
//! Raised if the the transformation is singular. This means that
//! Raised if the transformation is singular. This means that
//! the ScaleFactor is lower or equal to Resolution from
//! package gp.
void Invert() { gpTrsf.Invert(); }
//! Raised if the the transformation is singular. This means that
//! Raised if the transformation is singular. This means that
//! the ScaleFactor is lower or equal to Resolution from
//! package gp.
Standard_NODISCARD Standard_EXPORT Handle(Geom_Transformation) Inverted() const;