VTK  9.3.0
vtkExtractSelectedPolyDataIds.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
31#ifndef vtkExtractSelectedPolyDataIds_h
32#define vtkExtractSelectedPolyDataIds_h
33
34#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_2_0
35#include "vtkFiltersExtractionModule.h" // For export macro
37
38VTK_ABI_NAMESPACE_BEGIN
39class vtkSelection;
40
41class VTK_DEPRECATED_IN_9_2_0("Use vtkExtractSelection instead of vtkExtractSelectedPolyDataIds.")
42 VTKFILTERSEXTRACTION_EXPORT vtkExtractSelectedPolyDataIds : public vtkPolyDataAlgorithm
43{
44public:
46 void PrintSelf(ostream& os, vtkIndent indent) override;
48
49protected:
52
53 int FillInputPortInformation(int port, vtkInformation* info) override;
54
55 // Usual data generation method
57
58private:
60 void operator=(const vtkExtractSelectedPolyDataIds&) = delete;
61};
62
63VTK_ABI_NAMESPACE_END
64#endif
65
66// VTK-HeaderTest-Exclude: vtkExtractSelectedPolyDataIds.h
extract a list of cells from a polydata
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) 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.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
~vtkExtractSelectedPolyDataIds() override
static vtkExtractSelectedPolyDataIds * New()
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
data object that represents a "selection" in VTK.
#define VTK_DEPRECATED_IN_9_2_0(reason)