VTK  9.1.0
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
65#include "vtkStdString.h" // For vtkStdString ivars
66
67class VTKFILTERSPOINTS_EXPORT vtkPointInterpolator2D : public vtkPointInterpolator
68{
69public:
71
77 void PrintSelf(ostream& os, vtkIndent indent) override;
79
81
86 vtkSetMacro(InterpolateZ, bool);
87 vtkGetMacro(InterpolateZ, bool);
88 vtkBooleanMacro(InterpolateZ, bool);
90
92
97 vtkSetMacro(ZArrayName, vtkStdString);
98 vtkGetMacro(ZArrayName, vtkStdString);
100
101protected:
104
105 // Interpolate z values?
107
108 // Name of output array
110
111 // The driver of the algorithm
112 void Probe(vtkDataSet* input, vtkDataSet* source, vtkDataSet* output) override;
113
114private:
116 void operator=(const vtkPointInterpolator2D&) = delete;
117};
118
119#endif
abstract class to specify dataset behavior
Definition: vtkDataSet.h:166
a simple class to control print indentation
Definition: vtkIndent.h:113
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:105
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)