mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-11 16:19:17 +05:00
INT PAL 0052631: Line width property does not affect Shading with edges display mode
This commit is contained in:
parent
fa550f2017
commit
1344a93905
@ -839,11 +839,12 @@ void GEOM_Displayer::updateShapeProperties( const Handle(GEOM_AISShape)& AISShap
|
||||
// display mode from properties
|
||||
propMap.value( GEOM::propertyName( GEOM::DisplayMode ) ).toInt() );
|
||||
|
||||
// - face boundaries color
|
||||
// - face boundaries color and line width
|
||||
if( AISShape->DisplayMode() == GEOM_AISShape::ShadingWithEdges )
|
||||
AISShape->Attributes()->SetFaceBoundaryDraw( Standard_True );
|
||||
anAspect = AISShape->Attributes()->FaceBoundaryAspect();
|
||||
anAspect->SetColor( SalomeApp_Tools::color( propMap.value( GEOM::propertyName( GEOM::OutlineColor ) ).value<QColor>() ) );
|
||||
anAspect->SetWidth( propMap.value( GEOM::propertyName( GEOM::LineWidth ) ).toInt() );
|
||||
AISShape->Attributes()->SetFaceBoundaryAspect( anAspect );
|
||||
|
||||
// set display vectors flag
|
||||
|
@ -257,12 +257,8 @@ void GEOM_AISShape::Compute(const Handle(PrsMgr_PresentationManager3d)& aPresent
|
||||
shadingMode(aPresentationManager, aPrs, Shading);
|
||||
if( anIsColorField && myFieldDimension == 1 )
|
||||
drawField( aPrs );
|
||||
else {
|
||||
else
|
||||
myDrawer->SetFaceBoundaryDraw( Standard_True );
|
||||
Handle(Prs3d_LineAspect) aBoundaryAspect =
|
||||
new Prs3d_LineAspect ( myEdgesInShadingColor, Aspect_TOL_SOLID, myOwnWidth );
|
||||
myDrawer->SetFaceBoundaryAspect (aBoundaryAspect);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case TexturedShape:
|
||||
|
Loading…
Reference in New Issue
Block a user