1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-21 10:13:43 +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
} }
} }
if (K != vknots->Value (NewIndex)) {
vknots->SetValue (NewIndex, K);
maxderivinvok = 0; maxderivinvok = 0;
UpdateVKnots(); UpdateVKnots();
}
} }
//======================================================================= //=======================================================================