0020976: EDF 1471 SMESH: New ergonomy to display quality controls

+  virtual SMESH::long_array* GetNbElementsByType();
This commit is contained in:
eap 2013-07-03 16:04:07 +00:00
parent 38e26e89c3
commit 95a58b5ecf
4 changed files with 92 additions and 57 deletions

View File

@ -677,9 +677,9 @@ void SMESH_GroupBase_i::SetColorNumber(CORBA::Long color)
} }
//============================================================================= //=============================================================================
/*! /*
* Returns statistic of mesh elements * Returns number of mesh elements of each \a SMESH::EntityType
* Result array of number enityties * Result array of number of elements per \a SMESH::EntityType
* Inherited from SMESH_IDSource * Inherited from SMESH_IDSource
*/ */
//============================================================================= //=============================================================================
@ -706,6 +706,27 @@ SMESH::long_array* SMESH_GroupBase_i::GetMeshInfo()
return aRes._retn(); return aRes._retn();
} }
//=============================================================================
/*
* Returns number of mesh elements of each \a ElementType
*/
//=============================================================================
SMESH::long_array* SMESH_GroupBase_i::GetNbElementsByType()
{
SMESH::long_array_var aRes = new SMESH::long_array();
aRes->length(SMESH::NB_ELEMENT_TYPES);
for (int i = 0; i < SMESH::NB_ELEMENT_TYPES; i++)
aRes[ i ] = 0;
if ( myPreMeshInfo )
aRes[ GetType() ] = myPreMeshInfo->NbElements( SMDSAbs_ElementType( GetType() ));
else
aRes[ GetType() ] = Size();
return aRes._retn();
}
//======================================================================= //=======================================================================
//function : GetIDs //function : GetIDs
//purpose : Returns ids of members //purpose : Returns ids of members

View File

@ -72,15 +72,19 @@ class SMESH_I_EXPORT SMESH_GroupBase_i:
virtual SMESH::SMESH_Mesh_ptr GetMesh(); virtual SMESH::SMESH_Mesh_ptr GetMesh();
/*! /*!
* Returns statistic of mesh elements * Returns number of mesh elements of each \a EntityType
* Result array of number enityties * Result array of number of elements per \a EntityType
* Inherited from SMESH_IDSource * Inherited from SMESH_IDSource
*/ */
virtual SMESH::long_array* GetMeshInfo(); virtual SMESH::long_array* GetMeshInfo();
/*!
// Inherited from SMESH_IDSource interface * Returns number of mesh elements of each \a ElementType
*/
virtual SMESH::long_array* GetNbElementsByType();
/*!
* Returns a sequence of all element IDs
*/
virtual SMESH::long_array* GetIDs(); virtual SMESH::long_array* GetIDs();
/*! /*!
* Returns types of elements it contains * Returns types of elements it contains
* Inherited from SMESH_IDSource interface * Inherited from SMESH_IDSource interface

View File

@ -207,53 +207,29 @@ CORBA::Long SMESH_subMesh_i::GetNumberOfNodes(CORBA::Boolean all)
::SMESH_subMesh* aSubMesh = _mesh_i->_mapSubMesh[_localId]; ::SMESH_subMesh* aSubMesh = _mesh_i->_mapSubMesh[_localId];
SMESHDS_SubMesh* aSubMeshDS = aSubMesh->GetSubMeshDS(); SMESHDS_SubMesh* aSubMeshDS = aSubMesh->GetSubMeshDS();
set<int> nodeIds; if ( aSubMeshDS && aSubMeshDS->IsComplexSubmesh() )
// nodes are bound to shell instead of solid
TListOfSubMeshes smList;
if ( all && getSubMeshes( aSubMesh, smList ))
{ {
TListOfSubMeshes::iterator sm = smList.begin(); // sub-mesh on a geom group, always return all nodes
for ( ; sm != smList.end(); ++sm ) return aSubMeshDS->NbNodes();
}
if ( aSubMeshDS && !all )
{
// return anything we have
return aSubMeshDS->NbNodes();
}
if ( all ) // get nodes from aSubMesh and all child sub-meshes
{
int nbNodes = 0;
SMESH_subMeshIteratorPtr smIt = aSubMesh->getDependsOnIterator( /*includeSelf=*/true );
while ( smIt->more() )
{ {
SMDS_ElemIteratorPtr eIt = (*sm)->GetElements(); aSubMesh = smIt->next();
if ( eIt->more() ) { if (( aSubMeshDS = aSubMesh->GetSubMeshDS() ))
while ( eIt->more() ) { nbNodes += aSubMeshDS->NbNodes();
const SMDS_MeshElement* anElem = eIt->next();
SMDS_ElemIteratorPtr nIt = anElem->nodesIterator();
while ( nIt->more() )
nodeIds.insert( nIt->next()->GetID() );
}
} else {
SMDS_NodeIteratorPtr nIt = (*sm)->GetNodes();
while ( nIt->more() )
nodeIds.insert( nIt->next()->GetID() );
}
} }
return nodeIds.size();
} }
if ( aSubMeshDS == NULL ) return aSubMeshDS ? aSubMeshDS->NbNodes() : 0;
return 0;
if ( all ) { // all nodes of submesh elements
SMDS_ElemIteratorPtr eIt = aSubMeshDS->GetElements();
if ( eIt->more() ) {
while ( eIt->more() ) {
const SMDS_MeshElement* anElem = eIt->next();
SMDS_ElemIteratorPtr nIt = anElem->nodesIterator();
while ( nIt->more() )
nodeIds.insert( nIt->next()->GetID() );
}
} else {
SMDS_NodeIteratorPtr nIt = aSubMeshDS->GetNodes();
while ( nIt->more() )
nodeIds.insert( nIt->next()->GetID() );
}
return nodeIds.size();
}
return aSubMeshDS->NbNodes();
} }
//============================================================================= //=============================================================================
@ -508,14 +484,13 @@ SMESH::ElementType SMESH_subMesh_i::GetElementType( const CORBA::Long id, const
return GetFather()->GetElementType( id, iselem ); return GetFather()->GetElementType( id, iselem );
} }
//============================================================================= //=============================================================================
/*! /*
* Returns statistic of mesh elements * Returns number of mesh elements of each \a EntityType
* Result array of number enityties * @return array of number of elements per \a EntityType
* Inherited from SMESH_IDSource
*/ */
//============================================================================= //=============================================================================
SMESH::long_array* SMESH_subMesh_i::GetMeshInfo() SMESH::long_array* SMESH_subMesh_i::GetMeshInfo()
{ {
if ( _preMeshInfo ) if ( _preMeshInfo )
@ -540,6 +515,37 @@ SMESH::long_array* SMESH_subMesh_i::GetMeshInfo()
return aRes._retn(); return aRes._retn();
} }
//=======================================================================
/*
* Returns number of mesh elements of each \a ElementType
*/
//=======================================================================
SMESH::long_array* SMESH_subMesh_i::GetNbElementsByType()
{
SMESH::long_array_var aRes = new SMESH::long_array();
aRes->length(SMESH::NB_ELEMENT_TYPES);
for (int i = 0; i < SMESH::NB_ELEMENT_TYPES; i++)
if ( _preMeshInfo )
aRes[ i ] = _preMeshInfo->NbElements( SMDSAbs_ElementType( i ));
else
aRes[ i ] = 0;
if ( !_preMeshInfo )
{
aRes[ SMESH::NODE ] = GetNumberOfNodes(true);
::SMESH_subMesh* aSubMesh = _mesh_i->_mapSubMesh[_localId];
if ( SMESHDS_SubMesh* smDS = aSubMesh->GetSubMeshDS() )
{
SMDS_ElemIteratorPtr eIt = smDS->GetElements();
if ( eIt->more() )
aRes[ eIt->next()->GetType() ] = smDS->NbElements();
}
}
return aRes._retn();
}
//======================================================================= //=======================================================================
//function : GetTypes //function : GetTypes

View File

@ -88,11 +88,15 @@ public:
*/ */
virtual SMESH::long_array* GetIDs(); virtual SMESH::long_array* GetIDs();
/*! /*!
* Returns statistic of mesh elements * Returns number of mesh elements of each \a EntityType
* Result array of number enityties * Result array of number of elements per \a EntityType
* Inherited from SMESH_IDSource * Inherited from SMESH_IDSource
*/ */
virtual SMESH::long_array* GetMeshInfo(); virtual SMESH::long_array* GetMeshInfo();
/*!
* Returns number of mesh elements of each \a ElementType
*/
virtual SMESH::long_array* GetNbElementsByType();
/*! /*!
* Returns types of elements it contains * Returns types of elements it contains
*/ */