VTK  9.3.1
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 
21 #ifndef vtkImageDataToPointSet_h
22 #define vtkImageDataToPointSet_h
23 
24 #include "vtkFiltersGeneralModule.h" // For export macro
26 
27 VTK_ABI_NAMESPACE_BEGIN
28 class vtkImageData;
29 class vtkStructuredData;
30 
31 class VTKFILTERSGENERAL_EXPORT vtkImageDataToPointSet : public vtkStructuredGridAlgorithm
32 {
33 public:
35  void PrintSelf(ostream& os, vtkIndent indent) override;
36 
37  static vtkImageDataToPointSet* New();
38 
39 protected:
41  ~vtkImageDataToPointSet() override;
42 
43  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
44  vtkInformationVector* outputVector) override;
45 
47 
48 private:
50  void operator=(const vtkImageDataToPointSet&) = delete;
51 };
52 
53 VTK_ABI_NAMESPACE_END
54 #endif // vtkImageDataToPointSet_h
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
Singleton class for topologically regular data.
Converts a vtkImageData to a vtkPointSet.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Store vtkAlgorithm input/output information.
static vtkStructuredGridAlgorithm * New()
a simple class to control print indentation
Definition: vtkIndent.h:28
topologically and geometrically regular array of data
Definition: vtkImageData.h:42
Superclass for algorithms that produce only structured grid as output.
Store zero or more vtkInformation instances.