From 905db7698253679ce3d503e7073bfe0b129ff54c Mon Sep 17 00:00:00 2001 From: kgv Date: Tue, 15 Dec 2015 12:14:41 +0300 Subject: [PATCH] 0026995: Visualization, TKXCAF - do not reset custom material within XCAFPrs_AISObject::Compute() Assign default material in class constructor instead. --- src/XCAFPrs/XCAFPrs_AISObject.cxx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/XCAFPrs/XCAFPrs_AISObject.cxx b/src/XCAFPrs/XCAFPrs_AISObject.cxx index a1d45f5f95..eb2f9e68cf 100644 --- a/src/XCAFPrs/XCAFPrs_AISObject.cxx +++ b/src/XCAFPrs/XCAFPrs_AISObject.cxx @@ -48,6 +48,8 @@ IMPLEMENT_STANDARD_RTTIEXT(XCAFPrs_AISObject,AIS_ColoredShape) XCAFPrs_AISObject::XCAFPrs_AISObject (const TDF_Label& theLabel) : AIS_ColoredShape(TopoDS_Shape()) { + // define plastic material by default for proper color reproduction + SetMaterial (Graphic3d_NOM_PLASTIC); myLabel = theLabel; } @@ -117,12 +119,6 @@ void XCAFPrs_AISObject::Compute (const Handle(PrsMgr_PresentationManager3d)& the const Handle(Prs3d_Presentation)& thePrs, const Standard_Integer theMode) { - thePrs->Clear(); - - // abv: 06 Mar 00: to have good colors - Handle(TPrsStd_AISPresentation) aPrs = Handle(TPrsStd_AISPresentation)::DownCast (GetOwner()); - if (aPrs.IsNull() || !aPrs->HasOwnMaterial()) SetMaterial (Graphic3d_NOM_PLASTIC); - TopoDS_Shape aShape; if (!XCAFDoc_ShapeTool::GetShape (myLabel, aShape) || aShape.IsNull()) return;