VTK  9.2.6
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 =========================================================================*/
63 #ifndef vtkPointInterpolator2D_h
64 #define vtkPointInterpolator2D_h
65 
66 #include "vtkFiltersPointsModule.h" // For export macro
67 #include "vtkPointInterpolator.h"
68 #include "vtkStdString.h" // For vtkStdString ivars
69 
70 class VTKFILTERSPOINTS_EXPORT vtkPointInterpolator2D : public vtkPointInterpolator
71 {
72 public:
74 
78  static vtkPointInterpolator2D* New();
80  void PrintSelf(ostream& os, vtkIndent indent) override;
82 
84 
89  vtkSetMacro(InterpolateZ, bool);
90  vtkGetMacro(InterpolateZ, bool);
91  vtkBooleanMacro(InterpolateZ, bool);
93 
95 
100  vtkSetMacro(ZArrayName, vtkStdString);
101  vtkGetMacro(ZArrayName, vtkStdString);
103 
104 protected:
106  ~vtkPointInterpolator2D() override;
107 
108  // Interpolate z values?
110 
111  // Name of output array
113 
114  // The driver of the algorithm
115  void Probe(vtkDataSet* input, vtkDataSet* source, vtkDataSet* output) override;
116 
117 private:
119  void operator=(const vtkPointInterpolator2D&) = delete;
120 };
121 
122 #endif
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:38
abstract class to specify dataset behavior
Definition: vtkDataSet.h:62
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:39
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