56#ifndef vtkCellIterator_h
57#define vtkCellIterator_h
61#include "vtkCommonDataModelModule.h"
67VTK_ABI_NAMESPACE_BEGIN
201 UninitializedFlag = 0x0,
210 this->CacheFlags = UninitializedFlag;
214 void SetCache(
unsigned char flags) { this->CacheFlags |= flags; }
216 bool CheckCache(
unsigned char flags) {
return (this->CacheFlags & flags) == flags; }
218 vtkNew<vtkPoints> PointsContainer;
219 vtkNew<vtkIdList> PointIdsContainer;
220 vtkNew<vtkCellArray> FacesContainer;
221 vtkNew<vtkIdList> LegacyFacesContainer;
222 unsigned char CacheFlags;
242 if (!this->CheckCache(CellTypeFlag))
245 this->SetCache(CellTypeFlag);
247 return this->CellType;
253 if (!this->CheckCache(PointIdsFlag))
256 this->SetCache(PointIdsFlag);
258 return this->PointIds;
264 if (!this->CheckCache(PointsFlag))
267 this->SetCache(PointsFlag);
275 if (!this->CheckCache(FacesFlag))
278 this->SetCache(FacesFlag);
286 if (!this->CheckCache(FacesFlag))
289 this->SetCache(FacesFlag);
294 this->LegacyFacesContainer->Initialize();
296 for (
vtkIdType idx = 0; idx < tmp->GetNumberOfValues(); ++idx)
298 this->LegacyFacesContainer->InsertNextId(tmp->GetValue(idx));
300 return this->LegacyFacesContainer;
306 if (!this->CheckCache(PointIdsFlag))
309 this->SetCache(PointIdsFlag);
393 if (!this->CheckCache(FacesFlag))
396 this->SetCache(FacesFlag);
401 vtkGenericWarningMacro(
"Unknown cell type: " << this->CellType);
object to represent cell connectivity
vtkIdType GetNumberOfCells() const override
Get the number of cells in the array.
void ExportLegacyFormat(vtkIdTypeArray *data)
Fill data with the old-style vtkCellArray data layout, e.g.
int GetCellDimension()
Get the current cell dimension (0, 1, 2, or 3).
vtkIdList * GetSerializedCellFaces()
Get a serialized view of the faces for a polyhedral cell.
virtual void FetchPoints()=0
Lookup the cell points in the data set and store them in this->Points.
void GetCell(vtkGenericCell *cell)
Write the current full cell information into the argument.
virtual void FetchPointIds()=0
Lookup the cell point ids in the data set and store them in this->PointIds.
vtkIdType GetNumberOfFaces()
Return the number of faces in the current cell.
void InitTraversal()
Reset to the first cell.
vtkAbstractTypeMacro(vtkCellIterator, vtkObject)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkPoints * GetPoints()
Get the points in the current cell.
vtkCellArray * GetCellFaces()
Get the faces for a polyhedral cell.
virtual void FetchCellType()=0
Lookup the cell type in the data set and store it in this->CellType.
vtkIdType GetNumberOfPoints()
Return the number of points in the current cell.
virtual void IncrementToNextCell()=0
Update internal state to point to the next cell.
virtual vtkIdType GetCellId()=0
Get the id of the current cell.
virtual void ResetToFirstCell()=0
Update internal state to point to the first cell.
vtkIdList * GetPointIds()
Get the ids of the points in the current cell.
int GetCellType()
Get the current cell type (e.g.
virtual void FetchFaces()
Lookup the cell faces in the data set and store them in this->Faces.
void GoToNextCell()
Increment to next cell.
virtual bool IsDoneWithTraversal()=0
Returns false while the iterator is valid.
~vtkCellIterator() override
provides thread-safe access to cells
list of point or cell ids
vtkIdType GetNumberOfIds() const noexcept
Return the number of id's in the list.
a simple class to control print indentation
Allocate and hold a VTK object.
represent and manipulate 3D points
int GetNumberOfFaces() override
Implement the vtkCell API.
int GetCellType() override
Implement the vtkCell API.
@ VTK_QUADRATIC_HEXAHEDRON
@ VTK_HIGHER_ORDER_TETRAHEDRON
@ VTK_BIQUADRATIC_QUADRATIC_HEXAHEDRON
@ VTK_LAGRANGE_QUADRILATERAL
@ VTK_TRIQUADRATIC_PYRAMID
@ VTK_TRIQUADRATIC_HEXAHEDRON
@ VTK_PARAMETRIC_TRI_SURFACE
@ VTK_LAGRANGE_HEXAHEDRON
@ VTK_HIGHER_ORDER_TRIANGLE
@ VTK_PARAMETRIC_QUAD_SURFACE
@ VTK_LAGRANGE_TETRAHEDRON
@ VTK_HIGHER_ORDER_PYRAMID
@ VTK_PARAMETRIC_HEX_REGION
@ VTK_BEZIER_QUADRILATERAL
@ VTK_QUADRATIC_LINEAR_WEDGE
@ VTK_HIGHER_ORDER_HEXAHEDRON
@ VTK_PARAMETRIC_TETRA_REGION
@ VTK_QUADRATIC_LINEAR_QUAD
@ VTK_BIQUADRATIC_QUADRATIC_WEDGE
@ VTK_HIGHER_ORDER_POLYGON
@ VTK_BIQUADRATIC_TRIANGLE
virtual int GetNumberOfPoints()=0
Return the number of corner points that compose the cell.