VTK  9.2.6
vtkGenericPointIterator.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkGenericPointIterator.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=========================================================================*/
35
36#ifndef vtkGenericPointIterator_h
37#define vtkGenericPointIterator_h
38
39#include "vtkCommonDataModelModule.h" // For export macro
40#include "vtkObject.h"
41
42class VTKCOMMONDATAMODEL_EXPORT vtkGenericPointIterator : public vtkObject
43{
44public:
46
50 void PrintSelf(ostream& os, vtkIndent indent) override;
52
56 virtual void Begin() = 0;
57
61 virtual vtkTypeBool IsAtEnd() = 0;
62
67 virtual void Next() = 0;
68
74 virtual double* GetPosition() = 0;
75
81 virtual void GetPosition(double x[3]) = 0;
82
87 virtual vtkIdType GetId() = 0;
88
89protected:
91
97
98private:
100 void operator=(const vtkGenericPointIterator&) = delete;
101};
102
103#endif
virtual vtkTypeBool IsAtEnd()=0
Is the iterator at the end of traversal?
virtual double * GetPosition()=0
Get the coordinates of the point at the current iterator position.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard VTK construction and type macros.
virtual void Begin()=0
Move iterator to first position if any (loop initialization).
virtual void GetPosition(double x[3])=0
Get the coordinates of the point at the current iterator position.
virtual void Next()=0
Move the iterator to the next position in the list.
vtkGenericPointIterator()
Destructor.
~vtkGenericPointIterator() override
Destructor.
virtual vtkIdType GetId()=0
Return the unique identifier for the point, could be non-contiguous.
a simple class to control print indentation
Definition vtkIndent.h:40
int vtkTypeBool
Definition vtkABI.h:69
int vtkIdType
Definition vtkType.h:332