mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-26 09:20:35 +05:00
0023497: EDF 15720 - Projection transforms the type of shape
This commit is contained in:
parent
306370e41f
commit
2b52706653
@ -240,6 +240,18 @@ Standard_Integer GEOMImpl_ProjectionDriver::Execute(Handle(TFunction_Logbook)& l
|
|||||||
TopoDS_Iterator anIter(aShape);
|
TopoDS_Iterator anIter(aShape);
|
||||||
if (!anIter.More())
|
if (!anIter.More())
|
||||||
Standard_ConstructionError::Raise("Projection aborted : empty compound produced");
|
Standard_ConstructionError::Raise("Projection aborted : empty compound produced");
|
||||||
|
|
||||||
|
if (anOriginal.ShapeType() == TopAbs_WIRE) {
|
||||||
|
// Make wire from resulting compound (Mantis issue 0023497)
|
||||||
|
TopTools_ListOfShape anEdgesList;
|
||||||
|
for (; anIter.More(); anIter.Next()) {
|
||||||
|
anEdgesList.Append(anIter.Value());
|
||||||
|
}
|
||||||
|
BRepBuilderAPI_MakeWire aMkWire;
|
||||||
|
aMkWire.Add(anEdgesList);
|
||||||
|
if (aMkWire.IsDone())
|
||||||
|
aShape = aMkWire.Wire();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user