X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_CompositeSketch.cpp;h=77766fcb58be2cd4dacf071a65bca81d18ae6104;hb=34c2ee35f2b8ae2ef7a0673c7841f11078e06f3c;hp=adde95a0b22668d6cf0d1cf82976265096529ca3;hpb=b3695c3af5289903f1c0fa01bbb7c40203c5e544;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_CompositeSketch.cpp b/src/FeaturesPlugin/FeaturesPlugin_CompositeSketch.cpp index adde95a0b..77766fcb5 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_CompositeSketch.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_CompositeSketch.cpp @@ -358,7 +358,7 @@ void FeaturesPlugin_CompositeSketch::storeGenerationHistory(ResultBodyPtr theRes bool isClosed = false; // lateral edges are closed (in full revolution) GeomAPI_DataMapOfShapeShape anEdgesFromVertices; GeomAPI_ShapeExplorer aVertExp(theBaseShape, GeomAPI_Shape::VERTEX); - for(int anIndex = 1; aVertExp.more(); aVertExp.next()) { + for(; aVertExp.more(); aVertExp.next()) { ListOfShape aGenerated; theMakeShape->generated(aVertExp.current(), aGenerated); ListOfShape::iterator aGenIter = aGenerated.begin(); @@ -367,7 +367,7 @@ void FeaturesPlugin_CompositeSketch::storeGenerationHistory(ResultBodyPtr theRes if (anEdgesFromVertices.isBound(aGenerated)) // already here continue; std::ostringstream aStream; - aStream<<"Lateral_Edge_"<generated(aGenerated, aStream.str(), theTag++); anEdgesFromVertices.bind(aGenerated, aVertExp.current()); @@ -377,11 +377,11 @@ void FeaturesPlugin_CompositeSketch::storeGenerationHistory(ResultBodyPtr theRes } if (isClosed) { GeomAPI_ShapeExplorer anEdgesExp(theMakeShape->shape(), GeomAPI_Shape::EDGE); - for(int anIndex = 1; anEdgesExp.more(); anEdgesExp.next()) { + for(; anEdgesExp.more(); anEdgesExp.next()) { if (!anEdgesFromVertices.isBound(anEdgesExp.current())) { // found a base edge std::ostringstream aStream; - aStream<<"Base_Edge_"<generated(anEdgesExp.current(), aStream.str(), theTag++); // only one orientation is needed anEdgesFromVertices.bind(anEdgesExp.current(), anEdgesExp.current()); @@ -395,7 +395,7 @@ void FeaturesPlugin_CompositeSketch::storeGenerationHistory(ResultBodyPtr theRes if (!aVertices.isBound(aVertExp.current())) { // found a base edge std::ostringstream aStream; - aStream<<"Vertex_"<generated(aVertExp.current(), aStream.str(), theTag++); // only one orientation is needed aVertices.bind(aVertExp.current(), aVertExp.current()); @@ -405,7 +405,7 @@ void FeaturesPlugin_CompositeSketch::storeGenerationHistory(ResultBodyPtr theRes } else { // issue #2197, test case 4 : edges that produce fully-revolved face, // but contain only 2 edges (on apex of revolution) GeomAPI_ShapeExplorer anEdgeExp(theBaseShape, GeomAPI_Shape::EDGE); - for(int anIndex = 1; anEdgeExp.more(); anEdgeExp.next()) { + for(; anEdgeExp.more(); anEdgeExp.next()) { ListOfShape aGenerated; theMakeShape->generated(anEdgeExp.current(), aGenerated); ListOfShape::iterator aGenIter = aGenerated.begin(); @@ -416,10 +416,15 @@ void FeaturesPlugin_CompositeSketch::storeGenerationHistory(ResultBodyPtr theRes int aNumEdges = 0; int aNumClosed = 0; GeomShapePtr aNotClosedEdge; + GeomEdgePtr aDegenerateEdge; GeomAPI_DataMapOfShapeShape alreadyIterated; for(; aFaceEdgeExp.more(); aFaceEdgeExp.next()) { std::shared_ptr anEdge(new GeomAPI_Edge(aFaceEdgeExp.current())); - if (anEdge->isDegenerated() || alreadyIterated.isBound(anEdge)) + if (anEdge->isDegenerated()) { + aDegenerateEdge = anEdge; + continue; + } + if (alreadyIterated.isBound(anEdge)) continue; alreadyIterated.bind(anEdge, anEdge); aNumEdges++; @@ -431,8 +436,16 @@ void FeaturesPlugin_CompositeSketch::storeGenerationHistory(ResultBodyPtr theRes } if (aNumEdges == 2 && aNumClosed == 1) { std::ostringstream aStream; - aStream<<"Base_Edge_"<generated(aNotClosedEdge, aStream.str(), theTag++); + if (aDegenerateEdge.get()) { // export vertex of the degenerated edge (apex) #2520 + GeomAPI_ShapeExplorer anEdgeExp(aDegenerateEdge, GeomAPI_Shape::VERTEX); + if (anEdgeExp.more()) { + std::ostringstream aStream; + aStream << "Base_Vertex_" << theTag++; + theResultBody->generated(anEdgeExp.current(), aStream.str(), theTag++); + } + } } } } @@ -506,6 +519,11 @@ void FeaturesPlugin_CompositeSketch::storeShapes(ResultBodyPtr theResultBody, std::string aName = theName + aShapeTypeStr; storeSubShape(theResultBody, aShape, aShapeTypeToExplore, theMapOfSubShapes, aName, aShapeIndex, theTag); + if (theBaseShapeType == GeomAPI_Shape::WIRE) { // issue 2289: special names also for vertices + aName = theName + "Vertex"; + storeSubShape(theResultBody, aShape, GeomAPI_Shape::VERTEX, + theMapOfSubShapes, aName, aShapeIndex, theTag); + } } } }