VTK  9.3.1
vtkPointInterpolator2D.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
51 #ifndef vtkPointInterpolator2D_h
52 #define vtkPointInterpolator2D_h
53 
54 #include "vtkFiltersPointsModule.h" // For export macro
55 #include "vtkPointInterpolator.h"
56 #include "vtkStdString.h" // For vtkStdString ivars
57 
58 VTK_ABI_NAMESPACE_BEGIN
59 class VTKFILTERSPOINTS_EXPORT vtkPointInterpolator2D : public vtkPointInterpolator
60 {
61 public:
63 
67  static vtkPointInterpolator2D* New();
69  void PrintSelf(ostream& os, vtkIndent indent) override;
71 
73 
78  vtkSetMacro(InterpolateZ, bool);
79  vtkGetMacro(InterpolateZ, bool);
80  vtkBooleanMacro(InterpolateZ, bool);
82 
84 
89  vtkSetMacro(ZArrayName, vtkStdString);
90  vtkGetMacro(ZArrayName, vtkStdString);
92 
93 protected:
95  ~vtkPointInterpolator2D() override;
96 
97  // Interpolate z values?
99 
100  // Name of output array
102 
103  // The driver of the algorithm
104  void Probe(vtkDataSet* input, vtkDataSet* source, vtkDataSet* output) override;
105 
106 private:
108  void operator=(const vtkPointInterpolator2D&) = delete;
109 };
110 
111 VTK_ABI_NAMESPACE_END
112 #endif
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:28
abstract class to specify dataset behavior
Definition: vtkDataSet.h:52
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:28
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