]> OCCT Git - occt-copy.git/commitdiff
Correction of a comment to the new code block.
authoragv <agv@opencascade.com>
Thu, 4 Jul 2019 08:42:11 +0000 (11:42 +0300)
committeragv <agv@opencascade.com>
Thu, 4 Jul 2019 08:42:11 +0000 (11:42 +0300)
src/ShapeFix/ShapeFix_ComposeShell.cxx

index fe2be6709d5abd3a11eea1bf6639341b410f661d..7e424297eb555f0b68b1c9fc2d229d2881182183 100644 (file)
@@ -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();