diff --git a/src/XCAFDoc/XCAFDoc_ShapeTool.cdl b/src/XCAFDoc/XCAFDoc_ShapeTool.cdl index 286ae52f53..11b6094bd9 100755 --- a/src/XCAFDoc/XCAFDoc_ShapeTool.cdl +++ b/src/XCAFDoc/XCAFDoc_ShapeTool.cdl @@ -239,8 +239,12 @@ is ---Purpose: Adds a new top-level (creates and returns a new label) -- For internal use. Used by public method AddShape. - RemoveShape (me; L: Label from TDF) returns Boolean; + RemoveShape (me; L: Label from TDF; + removeCompletely: Boolean = Standard_True) + returns Boolean; ---Purpose: Removes shape (whole label and all its sublabels) + -- If removeCompletely is true, removes complete shape + -- If removeCompletely is false, removes instance(location) only -- Returns False (and does nothing) if shape is not free -- or is not top-level shape diff --git a/src/XCAFDoc/XCAFDoc_ShapeTool.cxx b/src/XCAFDoc/XCAFDoc_ShapeTool.cxx index 014926ac27..7f85299ba9 100755 --- a/src/XCAFDoc/XCAFDoc_ShapeTool.cxx +++ b/src/XCAFDoc/XCAFDoc_ShapeTool.cxx @@ -607,10 +607,27 @@ TDF_Label XCAFDoc_ShapeTool::AddShape (const TopoDS_Shape& theShape, //purpose : //======================================================================= -Standard_Boolean XCAFDoc_ShapeTool::RemoveShape (const TDF_Label& L) const +Standard_Boolean XCAFDoc_ShapeTool::RemoveShape (const TDF_Label& L, + const Standard_Boolean removeCompletely) const { if ( ! IsTopLevel ( L ) || ! IsFree ( L ) ) return Standard_False; + + Handle(TDataStd_TreeNode) aNode; + TDF_Label aLabel; + if (removeCompletely && + L.FindAttribute (XCAFDoc::ShapeRefGUID(), aNode) && + aNode->HasFather() && + L.IsAttribute (XCAFDoc_Location::GetID())) + { + aLabel = aNode->Father()->Label(); + } + L.ForgetAllAttributes (Standard_True); + + if (removeCompletely && !aLabel.IsNull()) + { + return RemoveShape(aLabel); + } return Standard_True; } diff --git a/src/XDEDRAW/XDEDRAW_Shapes.cxx b/src/XDEDRAW/XDEDRAW_Shapes.cxx index 06c24273d8..9a547f7ccd 100755 --- a/src/XDEDRAW/XDEDRAW_Shapes.cxx +++ b/src/XDEDRAW/XDEDRAW_Shapes.cxx @@ -143,8 +143,9 @@ static Standard_Integer getShape (Draw_Interpretor& di, Standard_Integer argc, c static Standard_Integer removeShape (Draw_Interpretor& di, Standard_Integer argc, const char** argv) { - if (argc!=3) { - di<<"Use: "<Main()); - myAssembly->RemoveShape(aLabel); + Standard_Boolean removeCompletely = Standard_True; + if ( argc == 4 && atoi(argv[3]) == 0 ) + removeCompletely = Standard_False; + myAssembly->RemoveShape(aLabel, removeCompletely); return 0; }