}
// Collect attributes to check.
+ ListOfShape anAddedEdges;
std::list<AttributeSelectionPtr> anAttributesToCheck;
for(int anIndex = 0; anIndex < aSelectionList->size(); ++anIndex) {
AttributeSelectionPtr aSelection = aSelectionList->value(anIndex);
continue;
}
+ anAddedEdges.push_back(anEdgeInList);
anAttributesToCheck.push_back(aSelection);
}
// Check if edges have contours.
- ListOfShape anAddedEdges;
- bool isAnyContourFound = false;
+ bool isAnyContourAdded = false;
for(std::list<AttributeSelectionPtr>::const_iterator aListIt = anAttributesToCheck.cbegin();
aListIt != anAttributesToCheck.cend();
++aListIt) {
break;
}
}
- if(anEdgesIt != anAddedEdges.cend()) {
- // This edge is already in list.
- continue;
- }
ResultConstructionPtr aConstruction = std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(aSelection->context());
std::shared_ptr<GeomAPI_PlanarEdges> aPlanarEdges = std::dynamic_pointer_cast<GeomAPI_PlanarEdges>(aConstruction->shape());
// If face with the same edge found. Add all other edges to list.
if(aFoundFace.get()) {
- isAnyContourFound = true;
- anAddedEdges.push_back(anEdgeInList);
for(GeomAPI_ShapeExplorer anExp(aFoundFace, GeomAPI_Shape::EDGE); anExp.more(); anExp.next()) {
std::shared_ptr<GeomAPI_Edge> anEdgeOnFace(new GeomAPI_Edge(anExp.current()));
anEdgesIt = anAddedEdges.cbegin();
}
}
if(anEdgesIt == anAddedEdges.cend()) {
+ isAnyContourAdded = true;
anAddedEdges.push_back(anEdgeOnFace);
aSelectionList->append(aConstruction, anEdgeOnFace);
}
}
}
- if(!isAnyContourFound) {
+ if(!isAnyContourAdded) {
Events_Error::send("Error: Contours already closed or no contours found for selected edges.");
return false;
}
#include <BRepBuilderAPI_MakeWire.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Wire.hxx>
+#include <TopExp_Explorer.hxx>
//=================================================================================================
std::shared_ptr<GeomAPI_Shape> GeomAlgoAPI_WireBuilder::wire(const ListOfShape& theShapes)
{
- BRepBuilderAPI_MakeWire aWireBuilder;
+ TopTools_ListOfShape aListOfEdges;
for(ListOfShape::const_iterator anIt = theShapes.cbegin(); anIt != theShapes.cend(); ++anIt) {
const TopoDS_Shape& aShape = (*anIt)->impl<TopoDS_Shape>();
switch(aShape.ShapeType()) {
case TopAbs_EDGE: {
- aWireBuilder.Add(TopoDS::Edge(aShape));
+ aListOfEdges.Append(aShape);
break;
}
case TopAbs_WIRE: {
- aWireBuilder.Add(TopoDS::Wire(aShape));
+ for(TopExp_Explorer anExp(aShape, TopAbs_EDGE); anExp.More(); anExp.Next()) {
+ aListOfEdges.Append(anExp.Current());
+ }
break;
}
default: {
}
}
+ BRepBuilderAPI_MakeWire aWireBuilder;
+ aWireBuilder.Add(aListOfEdges);
if(aWireBuilder.Error() != BRepBuilderAPI_WireDone) {
return GeomShapePtr();
}