VTK  9.3.20240327
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 
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:
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
abstract class to specify dataset behavior
Definition: vtkDataSet.h:165
a simple class to control print indentation
Definition: vtkIndent.h:108
interpolate point cloud attribute data onto x-y plane using various kernels
~vtkPointInterpolator2D() override
void Probe(vtkDataSet *input, vtkDataSet *source, vtkDataSet *output) override
Virtual for specialized subclass(es)
static vtkPointInterpolator2D * New()
Standard methods for instantiating, obtaining type information, and printing.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiating, obtaining type information, and printing.
interpolate over point cloud using various kernels
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:78
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)