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

@@ -44,7 +44,7 @@ BRep_Curve3D::BRep_Curve3D(const Handle(Geom_Curve)& C,
void BRep_Curve3D::D0(const Standard_Real U, gp_Pnt& P) const
{
// shoud be D0 NYI
// should be D0 NYI
P = myCurve->Value(U);
}

View File

@@ -48,7 +48,7 @@ BRep_CurveOnSurface::BRep_CurveOnSurface(const Handle(Geom2d_Curve)& PC,
void BRep_CurveOnSurface::D0(const Standard_Real U, gp_Pnt& P) const
{
// shoud be D0 NYI
// should be D0 NYI
gp_Pnt2d P2d = myPCurve->Value(U);
P = mySurface->Value(P2d.X(),P2d.Y());
P.Transform(myLocation.Transformation());