1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

Compare commits

...

1 Commits

Author SHA1 Message Date
knosulko
09e36976f3 0024790: Modeling Algorithms - missing intersection curve between two surfaces.
Adaptor3d/Adaptor3d_TopolTool.cxx - increasing minimal nb sample-points for BSpline surfaces.
2022-11-23 19:34:13 +03:00

View File

@@ -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 {