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
68#include "vtkStdString.h" // For vtkStdString ivars
69
70class VTKFILTERSPOINTS_EXPORT vtkPointInterpolator2D : public vtkPointInterpolator
71{
72public:
74
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
104protected:
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
117private:
119 void operator=(const vtkPointInterpolator2D&) = delete;
120};
121
122#endif
abstract class to specify dataset behavior
Definition: vtkDataSet.h:63
a simple class to control print indentation
Definition: vtkIndent.h:40
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:39
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)