mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-12 01:30:34 +05:00
Correction of mistakes: 0022537: EDF 2877 SMESH : wrong information about the numbre of nodes with polyhedra
This commit is contained in:
parent
cb88fa5e41
commit
b314c31c85
@ -1865,7 +1865,7 @@ void SMESHGUI_TreeElemInfo::information( const QList<long>& ids )
|
||||
const SMDS_MeshNode** aNodeIds = vtool.GetFaceNodes( face_id );
|
||||
const int nbNodes = vtool.NbFaceNodes( face_id );
|
||||
for( int node_id = 0; node_id < nbNodes; node_id++ ) {
|
||||
const SMDS_MeshNode* node = actor()->GetObject()->GetMesh()->FindNode( aNodeIds[node_id]->GetID() );
|
||||
const SMDS_MeshNode* node = aNodeIds[node_id];
|
||||
nodeInfo( node, uniqueNodes.indexOf(node) + 1, aVtkVolume->NbUniqueNodes(), faceItem );
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user