mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 10:08:34 +05:00
0021016: [CEA] non regression test KO
Implement SMDS_ElemIteratorPtr Q2TAdaptor_Triangle::elementsIterator(SMDSAbs_ElementType type) const
This commit is contained in:
parent
0074bfab7c
commit
a109051402
@ -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"));
|
||||
}
|
||||
};
|
||||
|
||||
//================================================================================
|
||||
|
Loading…
Reference in New Issue
Block a user