VTK  9.3.20240426
vtkInterpolateDataSetAttributes.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
53#ifndef vtkInterpolateDataSetAttributes_h
54#define vtkInterpolateDataSetAttributes_h
55
56#include "vtkDataSetAlgorithm.h"
57#include "vtkFiltersGeneralModule.h" // For export macro
58
59VTK_ABI_NAMESPACE_BEGIN
61
62class VTKFILTERSGENERAL_EXPORT vtkInterpolateDataSetAttributes : public vtkDataSetAlgorithm
63{
64public:
67 void PrintSelf(ostream& os, vtkIndent indent) override;
68
73
75
78 vtkSetClampMacro(T, double, 0.0, VTK_DOUBLE_MAX);
79 vtkGetMacro(T, double);
81
82protected:
85
87
89 int FillInputPortInformation(int port, vtkInformation* info) override;
90
91 vtkDataSetCollection* InputList; // list of data sets to interpolate
92 double T; // interpolation parameter
93
94private:
96 void operator=(const vtkInterpolateDataSetAttributes&) = delete;
97};
98
99VTK_ABI_NAMESPACE_END
100#endif
Superclass for algorithms that produce output of the same type as input.
maintain an unordered list of dataset objects
Detect and break reference loops.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
interpolate scalars, vectors, etc.
vtkDataSetCollection * GetInputList()
Return the list of inputs to this filter.
static vtkInterpolateDataSetAttributes * New()
void ReportReferences(vtkGarbageCollector *) override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
#define VTK_DOUBLE_MAX
Definition vtkType.h:154