X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FBuildPlugin%2FBuildPlugin_Face.cpp;h=774cfdf39787a3745719e15fd8cca67d90e8f009;hb=b38bb339a84175749f2742d906db858e3377c86b;hp=0f20802984fbce5120440875cb13457065ee4f32;hpb=daa4b94e31bc333bbbc39ba0125cfce95a0ce729;p=modules%2Fshaper.git diff --git a/src/BuildPlugin/BuildPlugin_Face.cpp b/src/BuildPlugin/BuildPlugin_Face.cpp index 0f2080298..774cfdf39 100644 --- a/src/BuildPlugin/BuildPlugin_Face.cpp +++ b/src/BuildPlugin/BuildPlugin_Face.cpp @@ -79,7 +79,8 @@ void BuildPlugin_Face::execute() // Get faces. ListOfShape aFaces; - GeomAlgoAPI_SketchBuilder::createFaces(aPln->location(), aPln->xDirection(), aPln->direction(), anEdges, aFaces); + GeomAlgoAPI_SketchBuilder::createFaces(aPln->location(), aPln->xDirection(), + aPln->direction(), anEdges, aFaces); // Get wires from faces. ListOfShape aWires; @@ -111,7 +112,8 @@ void BuildPlugin_Face::execute() for(ListOfShape::const_iterator anIt = anEdges.cbegin(); anIt != anEdges.cend(); ++anIt) { std::shared_ptr anEdgeInList(new GeomAPI_Edge(*anIt)); if(anEdgeInList->isEqual(anEdgeInResult)) { - aResultBody->modified(anEdgeInList, anEdgeInResult, "Edge_" + std::to_string((long long)anEdgeIndex), anEdgeIndex); + aResultBody->modified(anEdgeInList, anEdgeInResult, + "Edge_" + std::to_string((long long)anEdgeIndex), anEdgeIndex); ++anEdgeIndex; break; }