]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Split too long line
authormpv <mpv@opencascade.com>
Fri, 26 Oct 2018 17:08:15 +0000 (20:08 +0300)
committermpv <mpv@opencascade.com>
Mon, 19 Nov 2018 08:45:52 +0000 (11:45 +0300)
src/Selector/Selector_Selector.cpp

index 2b651c030e8ed949f6738a8c8a2ca6ce529344b5..409671b5cdeb8b97bfcb782ceea84aa1858221d6 100644 (file)
@@ -298,7 +298,8 @@ bool Selector_Selector::select(const TopoDS_Shape theContext, const TopoDS_Shape
       TopTools_MapOfShape anIntersectors; // shapes of aSelectionType that contain theValue
       TopoDS_ListOfShape anIntList; // same as anIntersectors
       for(TopExp_Explorer aSelExp(theContext, aSelectionType); aSelExp.More(); aSelExp.Next()) {
-        if (aSelectionType == TopAbs_EDGE && BRep_Tool::Degenerated(TopoDS::Edge(aSelExp.Current())))
+        if (aSelectionType == TopAbs_EDGE &&
+            BRep_Tool::Degenerated(TopoDS::Edge(aSelExp.Current())))
           continue;
         TopExp_Explorer aSubExp(aSelExp.Current(), theValue.ShapeType());
         for(; aSubExp.More(); aSubExp.Next()) {