0021016: [CEA] non regression test KO

Implement
      SMDS_ElemIteratorPtr Q2TAdaptor_Triangle::elementsIterator(SMDSAbs_ElementType type) const
This commit is contained in:
eap 2010-09-30 13:25:40 +00:00
parent 0074bfab7c
commit a109051402

View File

@ -25,8 +25,10 @@
//
#include "StdMeshers_QuadToTriaAdaptor.hxx"
#include <SMESH_Algo.hxx>
#include <SMESH_MesherHelper.hxx>
#include "SMDS_SetIterator.hxx"
#include "SMESH_Algo.hxx"
#include "SMESH_MesherHelper.hxx"
#include <IntAna_IntConicQuad.hxx>
#include <IntAna_Quadric.hxx>
@ -89,6 +91,12 @@ namespace
{
return SMDSAbs_EntityType( Q2TAbs_TmpTriangle );
}
virtual SMDS_ElemIteratorPtr elementsIterator(SMDSAbs_ElementType type) const
{
if ( type == SMDSAbs_Node )
return SMDS_ElemIteratorPtr( new SMDS_NodeArrayElemIterator( _nodes, _nodes+3 ));
throw SALOME_Exception(LOCALIZED("Not implemented"));
}
};
//================================================================================