From dc6ae350f3c75c0a0a6ceae20583daf241c83a7b Mon Sep 17 00:00:00 2001 From: anv Date: Thu, 20 Oct 2016 18:04:55 +0300 Subject: [PATCH] 0027971: Intersection with degenerated conical surface is translated incorrectly Added check for infinite surfaces. --- src/ShapeFix/ShapeFix_ComposeShell.cxx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/ShapeFix/ShapeFix_ComposeShell.cxx b/src/ShapeFix/ShapeFix_ComposeShell.cxx index 15776ad8ef..9afe4ffa01 100644 --- a/src/ShapeFix/ShapeFix_ComposeShell.cxx +++ b/src/ShapeFix/ShapeFix_ComposeShell.cxx @@ -118,15 +118,22 @@ void ShapeFix_ComposeShell::Init (const Handle(ShapeExtend_CompositeSurface) &Gr // DTK-CKY 100531 : protection against very thin face // Test "isclosed" should be filtered on the overall (non trimmed) surface, must be closed Handle(Geom_Surface) theSurface = BRep_Tool::Surface(Face,myLoc); - Standard_Real U0,U1,V0,V1; + Standard_Real U0,U1,V0,V1,GU0 = 0.,GU1 = 0.,GV0 = 0.,GV1 = 0.; theSurface->Bounds(U0,U1,V0,V1); + if (::Precision::IsInfinite (U0) || ::Precision::IsInfinite (U1) || + ::Precision::IsInfinite (V0) || ::Precision::IsInfinite (V1)) + BRepTools::UVBounds(Face, GU0, GU1, GV0, GV1); if (myUClosed) { + if (::Precision::IsInfinite (V0)) V0 = GV0; + if (::Precision::IsInfinite (V1)) V1 = GV1; gp_Pnt P0 = theSurface->Value(U0,(V0+V1)/2.); gp_Pnt P1 = theSurface->Value(U1,(V0+V1)/2.); if (P0.Distance(P1) > Precision::Confusion()*10) myUClosed = Standard_False; } if (myVClosed) { + if (::Precision::IsInfinite (U0)) U0 = GU0; + if (::Precision::IsInfinite (U1)) U1 = GU1; gp_Pnt P0 = theSurface->Value((U0+U1)/2.,V0); gp_Pnt P1 = theSurface->Value((U0+U1)/2.,V1); if (P0.Distance(P1) > Precision::Confusion()*10)