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

0027863: Geom_BSplineSurface::SetVKnot(const Standard_Integer, const Standard_Real) has no effect

Fix Geom_BSplineSurface::SetVKnot function to have the same behavior as SetUKnot.
This commit is contained in:
razmyslovich 2016-09-12 11:17:48 +02:00 committed by bugmaster
parent 099f351396
commit a165f00280

View File

@ -1099,8 +1099,11 @@ void Geom_BSplineSurface::SetVKnot
}
}
maxderivinvok = 0;
UpdateVKnots();
if (K != vknots->Value (NewIndex)) {
vknots->SetValue (NewIndex, K);
maxderivinvok = 0;
UpdateVKnots();
}
}
//=======================================================================