VTK  9.3.0
vtkImageDataToPointSet.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
3// SPDX-License-Identifier: BSD-3-Clause
4
30#ifndef vtkImageDataToPointSet_h
31#define vtkImageDataToPointSet_h
32
33#include "vtkFiltersGeneralModule.h" // For export macro
35
36VTK_ABI_NAMESPACE_BEGIN
37class vtkImageData;
39
40class VTKFILTERSGENERAL_EXPORT vtkImageDataToPointSet : public vtkStructuredGridAlgorithm
41{
42public:
44 void PrintSelf(ostream& os, vtkIndent indent) override;
45
47
48protected:
51
52 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
53 vtkInformationVector* outputVector) override;
54
55 int FillInputPortInformation(int port, vtkInformation* info) override;
56
57private:
59 void operator=(const vtkImageDataToPointSet&) = delete;
60};
61
62VTK_ABI_NAMESPACE_END
63#endif // vtkImageDataToPointSet_h
Converts a vtkImageData to a vtkPointSet.
static vtkImageDataToPointSet * New()
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
~vtkImageDataToPointSet() override
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
topologically and geometrically regular array of data
a simple class to control print indentation
Definition vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Singleton class for topologically regular data.
Superclass for algorithms that produce only structured grid as output.