VTK
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
home
demarle
Builds
VTK
release
Utilities
Doxygen
dox
Common
DataModel
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
=========================================================================*/
36
#ifndef vtkGenericPointIterator_h
37
#define vtkGenericPointIterator_h
38
39
#include "vtkCommonDataModelModule.h"
// For export macro
40
#include "
vtkObject.h
"
41
42
class
VTKCOMMONDATAMODEL_EXPORT
vtkGenericPointIterator
:
public
vtkObject
43
{
44
public
:
46
49
vtkTypeMacro(
vtkGenericPointIterator
,
vtkObject
);
50
void
PrintSelf
(ostream& os,
vtkIndent
indent) VTK_OVERRIDE;
52
56
virtual
void
Begin() = 0;
57
61
virtual
int
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
89
protected
:
91
94
vtkGenericPointIterator
();
95
~
vtkGenericPointIterator
() VTK_OVERRIDE;
97
98
private:
99
vtkGenericPointIterator
(const
vtkGenericPointIterator
&) VTK_DELETE_FUNCTION;
100
void
operator=(const
vtkGenericPointIterator
&) VTK_DELETE_FUNCTION;
101
};
102
103
#endif
vtkObject
abstract base class for most VTK objects
Definition:
vtkObject.h:59
vtkObject::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkIdType
int vtkIdType
Definition:
vtkType.h:287
vtkGenericPointIterator
iterator used to traverse points
Definition:
vtkGenericPointIterator.h:42
vtkIndent
a simple class to control print indentation
Definition:
vtkIndent.h:39
vtkObject.h
Generated by
1.8.9.1