From: agv Date: Thu, 4 Jul 2019 08:42:11 +0000 (+0300) Subject: Correction of a comment to the new code block. X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=796ca537820772db2d7adf85962cce2d7ae7e6af;p=occt-copy.git Correction of a comment to the new code block. --- diff --git a/src/ShapeFix/ShapeFix_ComposeShell.cxx b/src/ShapeFix/ShapeFix_ComposeShell.cxx index fe2be6709d..7e424297eb 100644 --- a/src/ShapeFix/ShapeFix_ComposeShell.cxx +++ b/src/ShapeFix/ShapeFix_ComposeShell.cxx @@ -118,7 +118,7 @@ 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); - // agv 2019/07/03 - avoid false detection of 'Closed' on very thin faces + // avoid false detection of 'Closed' on very thin faces if (theSurface->IsKind(STANDARD_TYPE(Geom_ElementarySurface))) { myUClosed = myUClosed && theSurface->IsUClosed(); myVClosed = myVClosed && theSurface->IsVClosed();