diff --git a/src/Adaptor3d/Adaptor3d_TopolTool.cxx b/src/Adaptor3d/Adaptor3d_TopolTool.cxx index 807291d755..6c082a057d 100644 --- a/src/Adaptor3d/Adaptor3d_TopolTool.cxx +++ b/src/Adaptor3d/Adaptor3d_TopolTool.cxx @@ -881,7 +881,9 @@ void Adaptor3d_TopolTool::SamplePnts(const Standard_Real theDefl, // case GeomAbs_BSplineSurface: { if(typS == GeomAbs_BSplineSurface) { // Processing BSpline surface - BSplSamplePnts(theDefl, theNUmin, theNVmin); + Standard_Integer aNUmin = (Standard_Integer)(1.2 * theNUmin); + Standard_Integer aNVmin = (Standard_Integer)(1.2 * theNVmin); + BSplSamplePnts(theDefl, aNUmin, aNVmin); return; } else {