From 7f9173355240275aac176bfbc704191401aec4e1 Mon Sep 17 00:00:00 2001 From: osa Date: Thu, 5 Mar 2015 14:05:11 +0300 Subject: [PATCH] 0025540: Visualization - discretization of the circle differs in shaded and wireframe modes. 1. "HilightDrawer" were added to SelectMgr_SelectableObject. 2. Static drawer in StdSelect_Shape was replaced by class member. It's value is taken from special HilightDrawer of Selectable() object. 3. Computed relative deflection is stored as absolute deflection to be used for sub-shapes. 4. The ColoredShape object was updated to use for sub-shapes relative deflection computed for main shape. 5. Test case was added. Tuning of test-case bug25532 --- src/AIS/AIS_ColoredShape.cxx | 17 +++- src/AIS/AIS_LocalContext_1.cxx | 1 - src/Prs3d/Prs3d.cdl | 2 + src/Prs3d/Prs3d.cxx | 3 + src/SelectMgr/SelectMgr_SelectableObject.cdl | 15 +++ src/SelectMgr/SelectMgr_SelectableObject.cxx | 102 ++++++++++++++++++- src/SelectMgr/SelectMgr_SelectableObject.lxx | 3 + src/StdPrs/StdPrs_ShadedShape.cxx | 4 +- src/StdSelect/StdSelect_BRepOwner.cxx | 34 +++++-- src/StdSelect/StdSelect_Shape.cdl | 7 +- src/StdSelect/StdSelect_Shape.cxx | 38 +++---- tests/bugs/vis/bug25532 | 4 +- tests/bugs/vis/bug25540 | 49 +++++++++ 13 files changed, 238 insertions(+), 41 deletions(-) create mode 100644 tests/bugs/vis/bug25540 diff --git a/src/AIS/AIS_ColoredShape.cxx b/src/AIS/AIS_ColoredShape.cxx index 5d0f8d99dd..46a2880ae6 100644 --- a/src/AIS/AIS_ColoredShape.cxx +++ b/src/AIS/AIS_ColoredShape.cxx @@ -36,7 +36,6 @@ #include #include #include -#include #include #include #include @@ -321,6 +320,15 @@ void AIS_ColoredShape::Compute (const Handle(PrsMgr_PresentationManager3d)& , } StdPrs_ShadedShape::Tessellate (myshape, myDrawer); } + // After this call if type of deflection is relative + // computed deflection coefficient is stored as absolute. + StdPrs_ShadedShape::Tessellate (myshape, myDrawer); + } + else // WireFrame mode + { + // After this call if type of deflection is relative + // computed deflection coefficient is stored as absolute. + Prs3d::GetDeflection (myshape, myDrawer); } TopoDS_Compound anOpened, aClosed; @@ -395,6 +403,12 @@ void AIS_ColoredShape::addShapesWithCustomProps (const Handle(Prs3d_Presentation aDrawer = myDrawer; } + // It is supposed that absolute deflection contains previously computed relative deflection + // (if deflection type is relative). + // In case of CustomDrawer it is taken from Link(). + Aspect_TypeOfDeflection aPrevType = aDrawer->TypeOfDeflection(); + aDrawer->SetTypeOfDeflection (Aspect_TOD_ABSOLUTE); + // Draw each kind of subshapes and personal-colored shapes in a separate group // since it's necessary to set transparency/material for all subshapes // without affecting their unique colors @@ -408,6 +422,7 @@ void AIS_ColoredShape::addShapesWithCustomProps (const Handle(Prs3d_Presentation { StdPrs_WFDeflectionShape::Add (thePrs, aShapeDraw, aDrawer); } + aDrawer->SetTypeOfDeflection (aPrevType); } } } diff --git a/src/AIS/AIS_LocalContext_1.cxx b/src/AIS/AIS_LocalContext_1.cxx index 13042c5004..cbf86d849e 100644 --- a/src/AIS/AIS_LocalContext_1.cxx +++ b/src/AIS/AIS_LocalContext_1.cxx @@ -28,7 +28,6 @@ #include #include #include -#include #include #include #include diff --git a/src/Prs3d/Prs3d.cdl b/src/Prs3d/Prs3d.cdl index 1563502a59..da879ef8e3 100644 --- a/src/Prs3d/Prs3d.cdl +++ b/src/Prs3d/Prs3d.cdl @@ -155,6 +155,8 @@ is -- deviation coefficient from theDrawer and the shape's bounding box; --
  • Aspect_TOD_ABSOLUTE: the maximal chordial deviation from theDrawer is returned.
  • -- + -- In case of the type of deflection in theDrawer computed relative deflection for shape + -- is stored as absolute deflection. It is necessary to use it later on for sub-shapes. -- This function should always be used to compute the deflection value for building -- discrete representations of the shape (triangualtion, wireframe) to avoid incosistencies -- between different representations of the shape and undesirable visual artifacts. diff --git a/src/Prs3d/Prs3d.cxx b/src/Prs3d/Prs3d.cxx index db6b09d651..c1f22c49aa 100644 --- a/src/Prs3d/Prs3d.cxx +++ b/src/Prs3d/Prs3d.cxx @@ -69,6 +69,9 @@ Standard_Real Prs3d::GetDeflection (const TopoDS_Shape& theShape, Standard_Real aXmin, aYmin, aZmin, aXmax, aYmax, aZmax; aBndBox.Get (aXmin, aYmin, aZmin, aXmax, aYmax, aZmax); aDeflection = MAX3 (aXmax-aXmin, aYmax-aYmin, aZmax-aZmin) * theDrawer->DeviationCoefficient() * 4.0; + // we store computed relative deflection of shape as absolute deviation coefficient + // in case relative type to use it later on for sub-shapes. + theDrawer->SetMaximalChordialDeviation (aDeflection); } } return aDeflection; diff --git a/src/SelectMgr/SelectMgr_SelectableObject.cdl b/src/SelectMgr/SelectMgr_SelectableObject.cdl index e011f9805d..1c889c0468 100644 --- a/src/SelectMgr/SelectMgr_SelectableObject.cdl +++ b/src/SelectMgr/SelectMgr_SelectableObject.cdl @@ -198,10 +198,25 @@ is UnsetAttributes(me:mutable) is virtual; ---Purpose: Clears settings provided by the drawing tool theDrawer. + SetHilightAttributes(me:mutable; theDrawer: Drawer from Prs3d) is virtual; + ---Purpose: Initializes the hilight drawing tool theDrawer. + + HilightAttributes(me) returns any Drawer from Prs3d; + ---C++: return const& + ---C++: inline + ---Purpose: Returns the hilight attributes settings. + + UnsetHilightAttributes(me:mutable) is virtual; + ---Purpose: Clears settings provided by the hilight drawing tool theDrawer. + + InitDefaultHilightAttributes(myclass; theDrawer : Drawer from Prs3d); + ---Purpose: Initializes theDrawer by default hilight settings. + fields myselections : SequenceOfSelection is protected; myDrawer : Drawer from Prs3d is protected; + myHilightDrawer : Drawer from Prs3d is protected; mycurrent : Integer; myAutoHilight : Boolean from Standard; diff --git a/src/SelectMgr/SelectMgr_SelectableObject.cxx b/src/SelectMgr/SelectMgr_SelectableObject.cxx index c65ba20d4b..4a0d3a75d7 100644 --- a/src/SelectMgr/SelectMgr_SelectableObject.cxx +++ b/src/SelectMgr/SelectMgr_SelectableObject.cxx @@ -24,6 +24,12 @@ #include #include #include +#include +#include +#include +#include +#include +#include #include #include @@ -47,8 +53,12 @@ static Standard_Integer Search (const SelectMgr_SequenceOfSelection& seq, SelectMgr_SelectableObject::SelectMgr_SelectableObject( const PrsMgr_TypeOfPresentation3d aTypeOfPresentation3d): PrsMgr_PresentableObject (aTypeOfPresentation3d), myDrawer (new Prs3d_Drawer()), + myHilightDrawer (new Prs3d_Drawer()), myAutoHilight (Standard_True) -{} +{ + InitDefaultHilightAttributes (myHilightDrawer); + myHilightDrawer->Link (myDrawer); +} //================================================== @@ -378,3 +388,93 @@ void SelectMgr_SelectableObject::UnsetAttributes() myDrawer = aDrawer; } +//======================================================================= +//function : SetHilightAttributes +//purpose : +//======================================================================= +void SelectMgr_SelectableObject::SetHilightAttributes (const Handle(Prs3d_Drawer)& theDrawer) +{ + myHilightDrawer = theDrawer; +} + +//======================================================================= +//function : UnsetAttributes +//purpose : +//======================================================================= +void SelectMgr_SelectableObject::UnsetHilightAttributes() +{ + Handle(Prs3d_Drawer) aDrawer = new Prs3d_Drawer(); + InitDefaultHilightAttributes (aDrawer); + aDrawer->Link (myDrawer); + myHilightDrawer = aDrawer; +} + +//======================================================================= +//function : InitDefaultHilightAttributes +//purpose : +//======================================================================= +void SelectMgr_SelectableObject::InitDefaultHilightAttributes (const Handle(Prs3d_Drawer)& theDrawer) +{ + if (!theDrawer->HasOwnPointAspect()) + { + theDrawer->SetPointAspect (new Prs3d_PointAspect (Aspect_TOM_POINT, Quantity_NOC_BLACK, 1.0)); + if (theDrawer->HasLink()) + { + *theDrawer->PointAspect()->Aspect() = *theDrawer->Link()->PointAspect()->Aspect(); + } + } + if (!theDrawer->HasOwnLineAspect()) + { + theDrawer->SetLineAspect (new Prs3d_LineAspect (Quantity_NOC_BLACK, Aspect_TOL_SOLID, 1.0)); + if (theDrawer->HasLink()) + { + *theDrawer->LineAspect()->Aspect() = *theDrawer->Link()->LineAspect()->Aspect(); + } + } + if (!theDrawer->HasOwnWireAspect()) + { + theDrawer->SetWireAspect (new Prs3d_LineAspect (Quantity_NOC_BLACK, Aspect_TOL_SOLID, 1.0)); + if (theDrawer->HasLink()) + { + *theDrawer->WireAspect()->Aspect() = *theDrawer->Link()->WireAspect()->Aspect(); + } + } + if (!theDrawer->HasOwnPlaneAspect()) + { + theDrawer->SetPlaneAspect (new Prs3d_PlaneAspect()); + if (theDrawer->HasLink()) + { + *theDrawer->PlaneAspect()->EdgesAspect() = *theDrawer->Link()->PlaneAspect()->EdgesAspect(); + } + } + if (!theDrawer->HasOwnFreeBoundaryAspect()) + { + theDrawer->SetFreeBoundaryAspect (new Prs3d_LineAspect (Quantity_NOC_BLACK, Aspect_TOL_SOLID, 1.0)); + if (theDrawer->HasLink()) + { + *theDrawer->FreeBoundaryAspect()->Aspect() = *theDrawer->Link()->FreeBoundaryAspect()->Aspect(); + } + } + if (!theDrawer->HasOwnUnFreeBoundaryAspect()) + { + theDrawer->SetUnFreeBoundaryAspect (new Prs3d_LineAspect (Quantity_NOC_BLACK, Aspect_TOL_SOLID, 1.0)); + if (theDrawer->HasLink()) + { + *theDrawer->UnFreeBoundaryAspect()->Aspect() = *theDrawer->Link()->UnFreeBoundaryAspect()->Aspect(); + } + } + + theDrawer->WireAspect()->SetWidth(2.); + theDrawer->LineAspect()->SetWidth(2.); + theDrawer->PlaneAspect()->EdgesAspect()->SetWidth(2.); + theDrawer->FreeBoundaryAspect()->SetWidth(2.); + theDrawer->UnFreeBoundaryAspect()->SetWidth(2.); + theDrawer->PointAspect()->SetTypeOfMarker(Aspect_TOM_O_POINT); + theDrawer->PointAspect()->SetScale(2.); + + // By default the hilight drawer has absolute type of deflection. + // It is supposed that absolute deflection is taken from Link(). + // It is necessary to use for all sub-shapes identical coefficient + // computed in ::Compute() call for whole shape and stored in base drawer. + theDrawer->SetTypeOfDeflection (Aspect_TOD_ABSOLUTE); +} diff --git a/src/SelectMgr/SelectMgr_SelectableObject.lxx b/src/SelectMgr/SelectMgr_SelectableObject.lxx index f140d68910..31ddd4a8ea 100644 --- a/src/SelectMgr/SelectMgr_SelectableObject.lxx +++ b/src/SelectMgr/SelectMgr_SelectableObject.lxx @@ -29,3 +29,6 @@ inline const Handle(Prs3d_Drawer)& SelectMgr_SelectableObject:: Attributes() const {return myDrawer;} +inline const Handle(Prs3d_Drawer)& SelectMgr_SelectableObject:: +HilightAttributes() const +{return myHilightDrawer;} diff --git a/src/StdPrs/StdPrs_ShadedShape.cxx b/src/StdPrs/StdPrs_ShadedShape.cxx index 3ddef99171..3a9ac5eacf 100644 --- a/src/StdPrs/StdPrs_ShadedShape.cxx +++ b/src/StdPrs/StdPrs_ShadedShape.cxx @@ -74,7 +74,7 @@ namespace if (!aShapeIter.More()) { // compound contains no shaded elements at all - StdPrs_WFShape::Add (thePrs, theShape, theDrawer); + StdPrs_WFDeflectionShape::Add (thePrs, theShape, theDrawer); return; } @@ -103,7 +103,7 @@ namespace } if (hasElement) { - StdPrs_WFShape::Add (thePrs, aCompoundWF, theDrawer); + StdPrs_WFDeflectionShape::Add (thePrs, aCompoundWF, theDrawer); } } diff --git a/src/StdSelect/StdSelect_BRepOwner.cxx b/src/StdSelect/StdSelect_BRepOwner.cxx index fb3feffaef..41af9cd91b 100644 --- a/src/StdSelect/StdSelect_BRepOwner.cxx +++ b/src/StdSelect/StdSelect_BRepOwner.cxx @@ -15,11 +15,10 @@ // commercial license or contractual agreement. #include -#include - -#include #include +#include +#include //================================================== // Function: @@ -88,10 +87,21 @@ void StdSelect_BRepOwner::Hilight(const Handle(PrsMgr_PresentationManager)& PM, myPrsSh.Nullify(); } + Handle(Prs3d_Drawer) aDrawer; + if (!aSel.IsNull()) + { + aDrawer = aSel->HilightAttributes(); + } + else + { + aDrawer = new Prs3d_Drawer(); + SelectMgr_SelectableObject::InitDefaultHilightAttributes (aDrawer); + } + // generate new presentable shape if (myPrsSh.IsNull()) { - myPrsSh = new StdSelect_Shape (myShape); + myPrsSh = new StdSelect_Shape (myShape, aDrawer); } if (!aSel.IsNull()) { @@ -100,7 +110,6 @@ void StdSelect_BRepOwner::Hilight(const Handle(PrsMgr_PresentationManager)& PM, // highlight and set layer PM->Highlight (myPrsSh, M); - } else { @@ -131,6 +140,17 @@ void StdSelect_BRepOwner::HilightWithColor(const Handle(PrsMgr_PresentationManag myPrsSh.Nullify(); } + Handle(Prs3d_Drawer) aDrawer; + if (!aSel.IsNull()) + { + aDrawer = aSel->HilightAttributes(); + } + else + { + aDrawer = new Prs3d_Drawer(); + SelectMgr_SelectableObject::InitDefaultHilightAttributes (aDrawer); + } + // generate new presentable shape if(myPrsSh.IsNull()) { @@ -138,10 +158,10 @@ void StdSelect_BRepOwner::HilightWithColor(const Handle(PrsMgr_PresentationManag { TopLoc_Location lbid = Location() * myShape.Location(); TopoDS_Shape ShBis = myShape.Located(lbid); - myPrsSh = new StdSelect_Shape(ShBis); + myPrsSh = new StdSelect_Shape(ShBis, aDrawer); } else - myPrsSh = new StdSelect_Shape(myShape); + myPrsSh = new StdSelect_Shape(myShape, aDrawer); } if (!aSel.IsNull()) { diff --git a/src/StdSelect/StdSelect_Shape.cdl b/src/StdSelect/StdSelect_Shape.cdl index fc3d7ff147..372b6ead36 100644 --- a/src/StdSelect/StdSelect_Shape.cdl +++ b/src/StdSelect/StdSelect_Shape.cdl @@ -23,10 +23,12 @@ uses Transformation from Geom, Shape from TopoDS, PresentationManager3d from PrsMgr, + Drawer from Prs3d, Presentation from Prs3d is - Create(Sh:Shape from TopoDS) returns Shape from StdSelect; + Create(theShape : Shape from TopoDS; + theDrawer : Drawer from Prs3d) returns Shape from StdSelect; Compute(me:mutable; aPresentationManager: PresentationManager3d from PrsMgr; @@ -61,5 +63,6 @@ is ---C++: inline fields - mysh : Shape from TopoDS; + mysh : Shape from TopoDS; + myDrawer : Drawer from Prs3d; end Shape; diff --git a/src/StdSelect/StdSelect_Shape.cxx b/src/StdSelect/StdSelect_Shape.cxx index 90e8ea2bf2..b81a292b91 100644 --- a/src/StdSelect/StdSelect_Shape.cxx +++ b/src/StdSelect/StdSelect_Shape.cxx @@ -15,47 +15,35 @@ // commercial license or contractual agreement. #include -#include -#include -#include -#include -#include + #include #include +#include #include -StdSelect_Shape::StdSelect_Shape(const TopoDS_Shape& sh): - mysh(sh) +StdSelect_Shape::StdSelect_Shape (const TopoDS_Shape& theShape, const Handle(Prs3d_Drawer)& theDrawer): + mysh (theShape), + myDrawer (theDrawer) {} - + void StdSelect_Shape::Compute(const Handle(PrsMgr_PresentationManager3d)& /*PM*/, const Handle(Prs3d_Presentation)& P, const Standard_Integer aMode) { - if(mysh.IsNull()) return; - - static Handle(Prs3d_Drawer) DRWR; - if(DRWR.IsNull()){ - DRWR = new Prs3d_Drawer(); - DRWR->WireAspect()->SetWidth(2); - DRWR->LineAspect()->SetWidth(2.); - DRWR->PlaneAspect()->EdgesAspect()->SetWidth(2.); - DRWR->FreeBoundaryAspect()->SetWidth(2.); - DRWR->UnFreeBoundaryAspect()->SetWidth(2.); - Standard_Integer I = 5;//pour tests... - DRWR->PointAspect()->SetTypeOfMarker((Aspect_TypeOfMarker)I); - DRWR->PointAspect()->SetScale(2.); + if(mysh.IsNull()) + { + return; } - + Standard_Boolean CanShade = (mysh.ShapeType()<5 || mysh.ShapeType()==8); if(aMode==1){ if(CanShade) - StdPrs_ShadedShape::Add(P,mysh,DRWR); + StdPrs_ShadedShape::Add (P, mysh, myDrawer); else - StdPrs_WFShape::Add(P,mysh,DRWR); + StdPrs_WFDeflectionShape::Add (P, mysh, myDrawer); } else if (aMode==0) - StdPrs_WFShape::Add(P,mysh,DRWR); + StdPrs_WFDeflectionShape::Add (P, mysh, myDrawer); } void StdSelect_Shape::Compute(const Handle(Prs3d_Projector)& aProjector , diff --git a/tests/bugs/vis/bug25532 b/tests/bugs/vis/bug25532 index 3b39479462..fbcf94a6ab 100644 --- a/tests/bugs/vis/bug25532 +++ b/tests/bugs/vis/bug25532 @@ -47,8 +47,8 @@ puts "Clearing (connected): [expr $aMemClear2 / (1024 * 1024)] MiB" set aRatio [expr $aMemClear2 / double($aMemClear1)] -# check if the memory difference is greater than 10% -if [expr $aRatio > 1.1] { +# check if the memory difference is greater than 20% +if [expr $aRatio > 1.2] { puts "Error : TEST FAILED" } diff --git a/tests/bugs/vis/bug25540 b/tests/bugs/vis/bug25540 new file mode 100644 index 0000000000..d5dac3aff3 --- /dev/null +++ b/tests/bugs/vis/bug25540 @@ -0,0 +1,49 @@ +puts "============" +puts "CR25540" +puts "Check that the discretization of local selection," +puts "wireframe and shaded presentation of shape is identical." +puts "============" +puts "" + +vinit View1 w=912 h=912 +vclear + +# Create object in shaded mode +vsetdispmode 1 +pcylinder p 1 100 +vdisplay p +vfit + +# Setup field of view +vrotate 1 1.5 0 +vfit +vtranslateview 24 18.5 0 +vzoom 32 +vtranslateview -0.1 -0.6 0 +vzoom 2 + +vdump $imagedir/${casename}_shaded_pres.png + +vmoveto 100 100 +vdump $imagedir/${casename}_h_pres.png + +# Activate the local selection by edges and hilight small circle edge. +# It's discretization should coincide with discretization of whole shape hiligting. +vsetam 2 +vmoveto 130 80 +vdump $imagedir/${casename}_local_h_pres.png + +vunsetam + +# Explode object on faces +explode p F +# Create colored shape: set another color to one face +vaspects p -subshapes p_3 -setcolor RED + +vsetam 0 +vmoveto 100 100 +vdump $imagedir/${casename}_h_sub_pres.png + +vsetam 2 +vmoveto 130 80 +vdump $imagedir/${casename}_local_h_sub_pres.png