/*========================================================================= Program: Visualization Toolkit Module: vtkProbeSelectedLocations.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ /** * @class vtkProbeSelectedLocations * @brief similar to vtkExtractSelectedLocations * except that it interpolates the point attributes at the probe locations. * * vtkProbeSelectedLocations is similar to vtkExtractSelectedLocations except * that it interpolates the point attributes at the probe location. This is * equivalent to the vtkProbeFilter except that the probe locations are provided * by a vtkSelection. The FieldType of the input vtkSelection is immaterial and * is ignored. The ContentType of the input vtkSelection must be * vtkSelection::LOCATIONS. */ #ifndef vtkProbeSelectedLocations_h #define vtkProbeSelectedLocations_h #include "vtkExtractSelectionBase.h" #include "vtkFiltersExtractionModule.h" // For export macro class VTKFILTERSEXTRACTION_EXPORT vtkProbeSelectedLocations : public vtkExtractSelectionBase { public: static vtkProbeSelectedLocations* New(); vtkTypeMacro(vtkProbeSelectedLocations, vtkExtractSelectionBase); void PrintSelf(ostream& os, vtkIndent indent) override; protected: vtkProbeSelectedLocations(); ~vtkProbeSelectedLocations() override; /** * Sets up empty output dataset */ int RequestDataObject(vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) override; int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override; private: vtkProbeSelectedLocations(const vtkProbeSelectedLocations&) = delete; void operator=(const vtkProbeSelectedLocations&) = delete; }; #endif