VTK
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
32#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);
44
45protected:
48
49 // Usual data generation method
53
55 vtkDataSet *output);
57 vtkDataSet *output);
58
59private:
61 void operator=(const vtkExtractSelectedLocations&) VTK_DELETE_FUNCTION;
62};
63
64#endif
abstract class to specify dataset behavior
Definition: vtkDataSet.h:63
extract cells within a dataset that contain the locations listen in the vtkSelection.
static vtkExtractSelectedLocations * New()
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
void PrintSelf(ostream &os, vtkIndent indent)
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:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
A node in a selection tree.
A node in a selection tree.
Definition: vtkSelection.h:44