VTK
vtkPointInterpolator2D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPointInterpolator2D.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 =========================================================================*/
60 #ifndef vtkPointInterpolator2D_h
61 #define vtkPointInterpolator2D_h
62 
63 #include "vtkFiltersPointsModule.h" // For export macro
64 #include "vtkPointInterpolator.h"
65 #include "vtkStdString.h" // For vtkStdString ivars
66 
67 
68 class VTKFILTERSPOINTS_EXPORT vtkPointInterpolator2D : public vtkPointInterpolator
69 {
70 public:
72 
76  static vtkPointInterpolator2D *New();
78  void PrintSelf(ostream& os, vtkIndent indent) override;
80 
82 
87  vtkSetMacro(InterpolateZ,bool);
88  vtkGetMacro(InterpolateZ,bool);
89  vtkBooleanMacro(InterpolateZ,bool);
91 
93 
98  vtkSetMacro(ZArrayName, vtkStdString);
99  vtkGetMacro(ZArrayName, vtkStdString);
101 
102 protected:
104  ~vtkPointInterpolator2D() override;
105 
106  // Interpolate z values?
108 
109  // Name of output array
111 
112  // The driver of the algorithm
113  void Probe(vtkDataSet *input, vtkDataSet *source, vtkDataSet *output) override;
114 
115 private:
117  void operator=(const vtkPointInterpolator2D&) = delete;
118 
119 };
120 
121 #endif
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:34
abstract class to specify dataset behavior
Definition: vtkDataSet.h:56
interpolate point cloud attribute data onto x-y plane using various kernels
static vtkPointInterpolator * New()
Standard methods for instantiating, obtaining type information, and printing.
a simple class to control print indentation
Definition: vtkIndent.h:33
virtual void Probe(vtkDataSet *input, vtkDataSet *source, vtkDataSet *output)
Virtual for specialized subclass(es)
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiating, obtaining type information, and printing.
interpolate over point cloud using various kernels