VTK  9.3.20240418
vtkQuadraturePointInterpolator.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
23 #ifndef vtkQuadraturePointInterpolator_h
24 #define vtkQuadraturePointInterpolator_h
25 
26 #include "vtkDataSetAlgorithm.h"
27 #include "vtkDeprecation.h" // For deprecation
28 #include "vtkFiltersGeneralModule.h" // For export macro
29 
30 VTK_ABI_NAMESPACE_BEGIN
31 class vtkDataSet;
33 class vtkInformation;
35 
36 class VTKFILTERSGENERAL_EXPORT vtkQuadraturePointInterpolator : public vtkDataSetAlgorithm
37 {
38 public:
41  void PrintSelf(ostream& os, vtkIndent indent) override;
42 
43 protected:
45  vtkInformation* req, vtkInformationVector** input, vtkInformationVector* output) override;
48 
49 private:
51  void operator=(const vtkQuadraturePointInterpolator&) = delete;
52  //
53  void Clear();
55 
61  int InterpolateFields(vtkDataSet* datasetOut);
62  VTK_DEPRECATED_IN_9_4_0("Uses the vtkDataSet version instead.")
63  int InterpolateFields(vtkUnstructuredGrid* usgOut);
65 };
66 
67 VTK_ABI_NAMESPACE_END
68 #endif
Superclass for algorithms that produce output of the same type as input.
abstract class to specify dataset behavior
Definition: vtkDataSet.h:166
a simple class to control print indentation
Definition: vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Interpolates each scalar/vector field in a vtkDataSet on its input to a specific set of quadrature po...
~vtkQuadraturePointInterpolator() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkQuadraturePointInterpolator * New()
int RequestData(vtkInformation *req, vtkInformationVector **input, vtkInformationVector *output) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
dataset represents arbitrary combinations of all possible cell types
#define VTK_DEPRECATED_IN_9_4_0(reason)