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

@@ -208,13 +208,13 @@ void BRepPrimAPI_MakeRevol::Build()
{
if (anIt.Value().IsEqual(anE))
{
//First occurence of initial deg. edge is not replaced
//First occurrence of initial deg. edge is not replaced
aCEL.Remove(anIt);
break;
}
if (anIt.Value().Orientation() == anE.Orientation())
{
//All other occurences of anE are replaced by any copy
//All other occurrences of anE are replaced by any copy
//with suitable orientation
isReplaced = Standard_True;
aSubs.Replace(anE, anIt.Value());
@@ -325,7 +325,7 @@ Standard_Boolean BRepPrimAPI_MakeRevol::CheckValidity(const TopoDS_Shape& theSha
Handle(GeomAdaptor_Curve) HC = new GeomAdaptor_Curve();
HC->Load(C, First, Last);
//Checking coinsidence axe of revolution and basis curve
//Checking coincidence axe of revolution and basis curve
//This code is taken directly from GeomAdaptor_SurfaceOfRevolution
Standard_Integer Ratio = 1;
Standard_Real Dist;
@@ -336,10 +336,10 @@ Standard_Boolean BRepPrimAPI_MakeRevol::CheckValidity(const TopoDS_Shape& theSha
Ratio++;
} while (Dist < Precision::Confusion() && Ratio < 100);
//
if (Ratio >= 100) // edge coinsides with axes
if (Ratio >= 100) // edge coincides with axes
{
IsValid = Standard_True; //Such edges are allowed by revol algo and treated
//by special way, so they must be concidered as valid
//by special way, so they must be considered as valid
}
else
{