1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

actual fix

This commit is contained in:
isn
2016-09-26 11:48:39 +03:00
parent 3a46f887da
commit 9cb4cd0ab7

View File

@@ -524,9 +524,8 @@ void BndLib_Box2dCurve::PerformOther()
aNb=33;
dT=(myT2-myT1)/(aNb-1);
//
aT=myT1;
for (j=0; j<aNb; ++j) {
aT=j*dT;
aT=myT1+j*dT;
myCurve->D0(aT, aP2D);
myBox.Add(aP2D);
}