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

0025199: Bad tolerance edge generated by blend algorithm

Fixed incorrect surface borders computing.

Test cases for issue CR25199
This commit is contained in:
aml
2014-09-04 13:59:05 +04:00
committed by bugmaster
parent 2a78ec6a07
commit 31cf9c5f7d
2 changed files with 30 additions and 1 deletions

View File

@@ -1558,7 +1558,10 @@ Standard_Boolean DecompositionOfWLine(const Handle(IntPatch_WLine)& theWLine,
Handle(GeomAdaptor_HSurface) aGASurface = (!surfit) ? theSurface1 : theSurface2;
aGASurface->ChangeSurface().Surface()->Bounds(umin, umax, vmin, vmax);
umin = aGASurface->FirstUParameter();
umax = aGASurface->LastUParameter();
vmin = aGASurface->FirstVParameter();
vmax = aGASurface->LastVParameter();
Standard_Real U=0., V=0.;
if(!surfit) {