Version: 9.16.0
SMDS_VtkCellIterator.hxx
Go to the documentation of this file.
1// Copyright (C) 2010-2026 CEA, EDF, OPEN CASCADE
2//
3// This library is free software; you can redistribute it and/or
4// modify it under the terms of the GNU Lesser General Public
5// License as published by the Free Software Foundation; either
6// version 2.1 of the License, or (at your option) any later version.
7//
8// This library is distributed in the hope that it will be useful,
9// but WITHOUT ANY WARRANTY; without even the implied warranty of
10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11// Lesser General Public License for more details.
12//
13// You should have received a copy of the GNU Lesser General Public
14// License along with this library; if not, write to the Free Software
15// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16//
17// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18//
19
20#ifndef _SMDS_VTKCELLITERATOR_HXX_
21#define _SMDS_VTKCELLITERATOR_HXX_
22
23#include "SMDS_ElemIterator.hxx"
24#include "SMDS_Mesh.hxx"
26
27#include <vtkCell.h>
28
29typedef std::vector< vtkIdType > TVtkIdList;
30
31//--------------------------------------------------------------------------------
36{
37 _GetVtkNodes( TVtkIdList& nodeIds, SMDS_Mesh* mesh, vtkIdType vtkCellId, SMDSAbs_EntityType type);
38};
40{
41 _GetVtkNodesToUNV( TVtkIdList& nodeIds, SMDS_Mesh* mesh, vtkIdType vtkCellId, SMDSAbs_EntityType type);
42};
44{
45 _GetVtkNodesPolyh( TVtkIdList& nodeIds, SMDS_Mesh* mesh, vtkIdType vtkCellId, SMDSAbs_EntityType type);
46};
47
48//--------------------------------------------------------------------------------
52template< class SMDS_ITERATOR = SMDS_ElemIterator, class GET_VTK_NODES = _GetVtkNodes >
53class SMDS_VtkCellIterator: public SMDS_ITERATOR
54{
55public:
56 typedef typename SMDS_ITERATOR::value_type result_type;
57
58 SMDS_VtkCellIterator(SMDS_Mesh* mesh, vtkIdType vtkCellId, SMDSAbs_EntityType aType)
59 : _mesh(mesh), _index(0)
60 {
61 GET_VTK_NODES getNodes( _vtkIdList, mesh, vtkCellId, aType );
62 }
64 virtual bool more() { return ( _index < _vtkIdList.size() ); }
65 virtual result_type next() {
66 vtkIdType id = _vtkIdList[ _index++ ];
67 return static_cast<result_type>( _mesh->FindNodeVtk( id ));
68 }
69protected:
71 size_t _index;
73};
74
75//--------------------------------------------------------------------------------
76template< class SMDS_ITERATOR = SMDS_ElemIterator >
77class SMDS_VtkCellIteratorToUNV: public SMDS_VtkCellIterator< SMDS_ITERATOR, _GetVtkNodesToUNV >
78{
80public:
81 SMDS_VtkCellIteratorToUNV(SMDS_Mesh* mesh, vtkIdType vtkCellId, SMDSAbs_EntityType type):
82 parent_t( mesh, vtkCellId, type ) {}
83};
84
85//--------------------------------------------------------------------------------
86template< class SMDS_ITERATOR = SMDS_ElemIterator >
87class SMDS_VtkCellIteratorPolyH: public SMDS_VtkCellIterator< SMDS_ITERATOR, _GetVtkNodesPolyh >
88{
90public:
91 SMDS_VtkCellIteratorPolyH(SMDS_Mesh* mesh, vtkIdType vtkCellId, SMDSAbs_EntityType type):
92 parent_t( mesh, vtkCellId, type ) {}
93};
94
95#endif
SMDSAbs_EntityType
Enumeration of entity type used in mesh info array.
Definition: SMDSAbs_ElementType.hxx:79
std::vector< vtkIdType > TVtkIdList
Definition: SMDS_VtkCellIterator.hxx:29
Definition: SMDS_Mesh.hxx:53
const SMDS_MeshNode * FindNodeVtk(vtkIdType idnode) const
Return the node whose VTK ID is 'vtkId'.
Definition: SMDS_Mesh.cxx:1002
Definition: SMDS_VtkCellIterator.hxx:88
SMDS_VtkCellIterator< SMDS_ITERATOR, _GetVtkNodesPolyh > parent_t
Definition: SMDS_VtkCellIterator.hxx:89
SMDS_VtkCellIteratorPolyH(SMDS_Mesh *mesh, vtkIdType vtkCellId, SMDSAbs_EntityType type)
Definition: SMDS_VtkCellIterator.hxx:91
Definition: SMDS_VtkCellIterator.hxx:78
SMDS_VtkCellIteratorToUNV(SMDS_Mesh *mesh, vtkIdType vtkCellId, SMDSAbs_EntityType type)
Definition: SMDS_VtkCellIterator.hxx:81
SMDS_VtkCellIterator< SMDS_ITERATOR, _GetVtkNodesToUNV > parent_t
Definition: SMDS_VtkCellIterator.hxx:79
Iterator on nodes of a cell.
Definition: SMDS_VtkCellIterator.hxx:54
virtual ~SMDS_VtkCellIterator()
Definition: SMDS_VtkCellIterator.hxx:63
SMDS_ITERATOR::value_type result_type
Definition: SMDS_VtkCellIterator.hxx:56
virtual result_type next()
Return the current object and step to the next one.
Definition: SMDS_VtkCellIterator.hxx:65
virtual bool more()
Return true if and only if there are other object in this iterator.
Definition: SMDS_VtkCellIterator.hxx:64
TVtkIdList _vtkIdList
Definition: SMDS_VtkCellIterator.hxx:72
size_t _index
Definition: SMDS_VtkCellIterator.hxx:71
SMDS_Mesh * _mesh
Definition: SMDS_VtkCellIterator.hxx:70
SMDS_VtkCellIterator(SMDS_Mesh *mesh, vtkIdType vtkCellId, SMDSAbs_EntityType aType)
Definition: SMDS_VtkCellIterator.hxx:58
Definition: SMDS_VtkCellIterator.hxx:44
_GetVtkNodesPolyh(TVtkIdList &nodeIds, SMDS_Mesh *mesh, vtkIdType vtkCellId, SMDSAbs_EntityType type)
Definition: SMDS_VtkCellIterator.cxx:134
Definition: SMDS_VtkCellIterator.hxx:40
_GetVtkNodesToUNV(TVtkIdList &nodeIds, SMDS_Mesh *mesh, vtkIdType vtkCellId, SMDSAbs_EntityType type)
Definition: SMDS_VtkCellIterator.cxx:48
Retrieve nodes of a cell.
Definition: SMDS_VtkCellIterator.hxx:36
_GetVtkNodes(TVtkIdList &nodeIds, SMDS_Mesh *mesh, vtkIdType vtkCellId, SMDSAbs_EntityType type)
Definition: SMDS_VtkCellIterator.cxx:26