VTK
vtkPointSetCellIterator.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkPointSetCellIterator.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
24#ifndef vtkPointSetCellIterator_h
25#define vtkPointSetCellIterator_h
26
27#include "vtkCommonDataModelModule.h" // For export macro
28#include "vtkCellIterator.h"
29#include "vtkSmartPointer.h" // For vtkSmartPointer
30
31class vtkPoints;
32class vtkPointSet;
33
34class VTKCOMMONDATAMODEL_EXPORT vtkPointSetCellIterator: public vtkCellIterator
35{
36public:
39 void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
40
41 bool IsDoneWithTraversal() VTK_OVERRIDE;
42 vtkIdType GetCellId() VTK_OVERRIDE;
43
44protected:
46 ~vtkPointSetCellIterator() VTK_OVERRIDE;
47
48 void ResetToFirstCell() VTK_OVERRIDE;
49 void IncrementToNextCell() VTK_OVERRIDE;
50 void FetchCellType() VTK_OVERRIDE;
51 void FetchPointIds() VTK_OVERRIDE;
52 void FetchPoints() VTK_OVERRIDE;
53
54 friend class vtkPointSet;
55 void SetPointSet(vtkPointSet *ds);
56
58 vtkSmartPointer<vtkPoints> PointSetPoints;
59 vtkIdType CellId;
60
61private:
62 vtkPointSetCellIterator(const vtkPointSetCellIterator &) VTK_DELETE_FUNCTION;
63 void operator=(const vtkPointSetCellIterator &) VTK_DELETE_FUNCTION;
64};
65
66#endif //vtkPointSetCellIterator_h
Efficient cell iterator for vtkDataSet topologies.
a simple class to control print indentation
Definition: vtkIndent.h:40
Implementation of vtkCellIterator using vtkPointSet API.
static vtkPointSetCellIterator * New()
abstract class for specifying dataset behavior
Definition: vtkPointSet.h:43
represent and manipulate 3D points
Definition: vtkPoints.h:40
Hold a reference to a vtkObjectBase instance.
@ PointSet
Definition: vtkX3D.h:62
int vtkIdType
Definition: vtkType.h:287