ParaView
vtkPolyLineToRectilinearGridFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPolyLineToRectilinearGridFilter.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 =========================================================================*/
27 #ifndef vtkPolyLineToRectilinearGridFilter_h
28 #define vtkPolyLineToRectilinearGridFilter_h
29 
30 #include "vtkPVVTKExtensionsDefaultModule.h" //needed for exports
31 #include "vtkRectilinearGridAlgorithm.h"
32 
33 class VTKPVVTKEXTENSIONSDEFAULT_EXPORT vtkPolyLineToRectilinearGridFilter
34  : public vtkRectilinearGridAlgorithm
35 {
36 public:
38  vtkTypeMacro(vtkPolyLineToRectilinearGridFilter, vtkRectilinearGridAlgorithm);
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
41 protected:
44 
45  virtual int FillInputPortInformation(int port, vtkInformation* info);
46 
47  virtual int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
48  vtkInformationVector* outputVector);
49 
50  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
51  vtkInformationVector* outputVector);
52 
53 private:
55  void operator=(const vtkPolyLineToRectilinearGridFilter&) VTK_DELETE_FUNCTION;
56 };
57 
58 #endif
filter that converts an input poly data with a single polyline to a 1-D regular rectilinear grid...