VTK  9.0.3
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
64 #include "vtkPointInterpolator.h"
65 #include "vtkStdString.h" // For vtkStdString ivars
66 
67 class VTKFILTERSPOINTS_EXPORT vtkPointInterpolator2D : public vtkPointInterpolator
68 {
69 public:
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 
101 protected:
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 
114 private:
116  void operator=(const vtkPointInterpolator2D&) = delete;
117 };
118 
119 #endif
abstract class to specify dataset behavior
Definition: vtkDataSet.h:57
a simple class to control print indentation
Definition: vtkIndent.h:34
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
Methods invoked by print to print information about the object including superclasses.
interpolate over point cloud using various kernels
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:35
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)