From e21b2bc603d0ae0caea67773fe949b480fed2ca6 Mon Sep 17 00:00:00 2001 From: san Date: Mon, 20 Oct 2014 20:36:42 +0400 Subject: [PATCH] 0025399: Visualization - XCAFPrs_AISObject ignores global aspect settings Copying of the default drawer's parameters added. --- src/XCAFPrs/XCAFPrs_AISObject.cxx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/XCAFPrs/XCAFPrs_AISObject.cxx b/src/XCAFPrs/XCAFPrs_AISObject.cxx index 464b8d78b2..3330162bf6 100644 --- a/src/XCAFPrs/XCAFPrs_AISObject.cxx +++ b/src/XCAFPrs/XCAFPrs_AISObject.cxx @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include @@ -184,30 +185,39 @@ void XCAFPrs_AISObject::SetColors (const Handle(AIS_Drawer)& theDrawer, if (!theDrawer->HasShadingAspect()) { theDrawer->SetShadingAspect (new Prs3d_ShadingAspect()); + *theDrawer->ShadingAspect()->Aspect() = *theDrawer->Link()->ShadingAspect()->Aspect(); } if (!theDrawer->HasLineAspect()) { theDrawer->SetLineAspect (new Prs3d_LineAspect (Quantity_NOC_BLACK, Aspect_TOL_SOLID, 1.0)); + *theDrawer->LineAspect()->Aspect() = *theDrawer->Link()->LineAspect()->Aspect(); } if (!theDrawer->HasWireAspect()) { theDrawer->SetWireAspect (new Prs3d_LineAspect (Quantity_NOC_BLACK, Aspect_TOL_SOLID, 1.0)); + *theDrawer->WireAspect()->Aspect() = *theDrawer->Link()->WireAspect()->Aspect(); } if (!theDrawer->HasUIsoAspect()) { theDrawer->SetUIsoAspect (new Prs3d_IsoAspect (Quantity_NOC_GRAY75, Aspect_TOL_SOLID, 0.5, 1)); + *theDrawer->UIsoAspect()->Aspect() = *theDrawer->Link()->UIsoAspect()->Aspect(); + theDrawer->UIsoAspect()->SetNumber (theDrawer->Link()->UIsoAspect()->Number()); } if (!theDrawer->HasVIsoAspect()) { theDrawer->SetVIsoAspect (new Prs3d_IsoAspect (Quantity_NOC_GRAY75, Aspect_TOL_SOLID, 0.5, 1)); + *theDrawer->VIsoAspect()->Aspect() = *theDrawer->Link()->VIsoAspect()->Aspect(); + theDrawer->VIsoAspect()->SetNumber (theDrawer->Link()->VIsoAspect()->Number()); } if (!theDrawer->HasFreeBoundaryAspect()) { theDrawer->SetFreeBoundaryAspect (new Prs3d_LineAspect (Quantity_NOC_BLACK, Aspect_TOL_SOLID, 1.0)); + *theDrawer->FreeBoundaryAspect()->Aspect() = *theDrawer->Link()->FreeBoundaryAspect()->Aspect(); } if (!theDrawer->HasUnFreeBoundaryAspect()) { theDrawer->SetUnFreeBoundaryAspect (new Prs3d_LineAspect (Quantity_NOC_BLACK, Aspect_TOL_SOLID, 1.0)); + *theDrawer->UnFreeBoundaryAspect()->Aspect() = *theDrawer->Link()->UnFreeBoundaryAspect()->Aspect(); } theDrawer->UnFreeBoundaryAspect()->SetColor (theColorCurv);