From: Viktor UZLOV Date: Thu, 29 Jul 2021 09:07:38 +0000 (+0300) Subject: coincident topology depends on mesh size X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=73f495075d1ec50fc6a10023eeecf315d5ad2496;p=modules%2Fsmesh.git coincident topology depends on mesh size --- diff --git a/src/OBJECT/SMESH_Actor.cxx b/src/OBJECT/SMESH_Actor.cxx index 0b3dcee32..b90253100 100644 --- a/src/OBJECT/SMESH_Actor.cxx +++ b/src/OBJECT/SMESH_Actor.cxx @@ -2555,10 +2555,20 @@ void SMESH_ActorDef::SetRelativeTopologyOffsetParameters(double f, double u, double f_delta, double u_delta) { my2DActor->SetPolygonOffsetParameters(f,u + u_delta); - my2DExtActor->SetPolygonOffsetParameters(f,u*0.5 + u_delta); - my3DActor->SetPolygonOffsetParameters(f,u*2 + u_delta); - myHighlitableActor->GetMapper()->SetRelativeCoincidentTopologyLineOffsetParameters(-f + f_delta, - u*(-50) + 10*u_delta); + my2DExtActor->SetPolygonOffsetParameters(f,u + 0.1 + u_delta); + my3DActor->SetPolygonOffsetParameters(f,u + 0.2 + u_delta); + + // vuzlov: Fix coincident topology depends on mesh size + // NOTE: in future need use 2 actors: + // 1 - with only surface representation + // 2 - vtkExtractEdges algorithm with surface representation + myHighlitableActor->GetMapper()->SetResolveCoincidentTopologyLineOffsetParameters(0, 0); + double* aBounds = myVisualObj->GetUnstructuredGrid()->GetPoints()->GetBounds(); + double theSize = pow( pow( aBounds[1] - aBounds[0], 2 ) + + pow( aBounds[3] - aBounds[2], 2 ) + + pow( aBounds[5] - aBounds[4], 2 ), 0.5 ); + theSize = u + 0.2 + u_delta - theSize/3; + myHighlitableActor->GetMapper()->SetRelativeCoincidentTopologyLineOffsetParameters(f, theSize); } void SMESH_ActorDef::UpdateFilter()