VTK  9.1.0
vtkExtractSelectedLocations.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkExtractSelectedLocations.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=========================================================================*/
29#ifndef vtkExtractSelectedLocations_h
30#define vtkExtractSelectedLocations_h
31
33#include "vtkFiltersExtractionModule.h" // For export macro
34
35class vtkSelection;
37
38class VTKFILTERSEXTRACTION_EXPORT vtkExtractSelectedLocations : public vtkExtractSelectionBase
39{
40public:
43 void PrintSelf(ostream& os, vtkIndent indent) override;
44
45protected:
48
49 // Usual data generation method
51
54
55private:
57 void operator=(const vtkExtractSelectedLocations&) = delete;
58};
59
60#endif
abstract class to specify dataset behavior
Definition: vtkDataSet.h:166
extract cells within a dataset that contain the locations listen in the vtkSelection.
~vtkExtractSelectedLocations() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
static vtkExtractSelectedLocations * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int ExtractPoints(vtkSelectionNode *sel, vtkDataSet *input, vtkDataSet *output)
int ExtractCells(vtkSelectionNode *sel, vtkDataSet *input, vtkDataSet *output)
abstract base class for all extract selection filters.
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
a node in a vtkSelection the defines the selection criteria.
data object that represents a "selection" in VTK.
Definition: vtkSelection.h:163