1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0023317: Using the iteration variable in the inner and outer loop in GGraphic2d_SetOfCurves.cxx

Replaced the iteration variable for the internal loop.
This commit is contained in:
Pawel 2012-07-18 10:48:50 +02:00 committed by Pawel Kowalski
parent 53aa7b3237
commit e9eb6248dc

View File

@ -460,8 +460,8 @@ void GGraphic2d_SetOfCurves::Save(Aspect_FStream& aFStream) const
theBC->Poles( tpoles );
*aFStream << "Geom2d_BezierCurve" << endl;
for ( i = 1; i <= nbPoles; i++ )
*aFStream << tpoles(i).X() << ' ' << tpoles(i).Y() << endl;
for ( Standard_Integer k = 1; k <= nbPoles; k++ )
*aFStream << tpoles(k).X() << ' ' << tpoles(k).Y() << endl;
} else if ( myCurve->IsKind(STANDARD_TYPE(Geom2d_BSplineCurve)) ) {
Handle(Geom2d_BSplineCurve) theBSC = Handle(Geom2d_BSplineCurve)::DownCast(myCurve);