VTK  9.4.20241117
vtkWarpVector.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
86#ifndef vtkWarpVector_h
87#define vtkWarpVector_h
88
89#include "vtkFiltersGeneralModule.h" // For export macro
91
92VTK_ABI_NAMESPACE_BEGIN
93class VTKFILTERSGENERAL_EXPORT vtkWarpVector : public vtkPointSetAlgorithm
94{
95public:
97
103 void PrintSelf(ostream& os, vtkIndent indent) override;
105
107
110 vtkSetMacro(ScaleFactor, double);
111 vtkGetMacro(ScaleFactor, double);
113
115
121 vtkSetMacro(OutputPointsPrecision, int);
122 vtkGetMacro(OutputPointsPrecision, int);
124
125 int FillInputPortInformation(int port, vtkInformation* info) override;
126
127protected:
129 ~vtkWarpVector() override;
130
132 vtkInformationVector* outputVector) override;
136
137private:
138 vtkWarpVector(const vtkWarpVector&) = delete;
139 void operator=(const vtkWarpVector&) = delete;
140};
141
142VTK_ABI_NAMESPACE_END
143#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce output of the same type as input.
deform geometry with vector data
int RequestDataObject(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
static vtkWarpVector * New()
Standard methods for instantiation, obtaining type information, and printing.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, obtaining type information, and printing.
~vtkWarpVector() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.