VTK  9.1.0
vtkWarpVector.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkWarpVector.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=========================================================================*/
35#ifndef vtkWarpVector_h
36#define vtkWarpVector_h
37
38#include "vtkFiltersGeneralModule.h" // For export macro
40
41class VTKFILTERSGENERAL_EXPORT vtkWarpVector : public vtkPointSetAlgorithm
42{
43public:
45
49 static vtkWarpVector* New();
51 void PrintSelf(ostream& os, vtkIndent indent) override;
53
55
58 vtkSetMacro(ScaleFactor, double);
59 vtkGetMacro(ScaleFactor, double);
61
63
69 vtkSetMacro(OutputPointsPrecision, int);
70 vtkGetMacro(OutputPointsPrecision, int);
72
74
75protected:
77 ~vtkWarpVector() override;
78
80 vtkInformationVector* outputVector) override;
84
85private:
86 vtkWarpVector(const vtkWarpVector&) = delete;
87 void operator=(const vtkWarpVector&) = delete;
88};
89
90#endif
a simple class to control print indentation
Definition: vtkIndent.h:43
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
Definition: vtkWarpVector.h:42
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.
int OutputPointsPrecision
Definition: vtkWarpVector.h:83
double ScaleFactor
Definition: vtkWarpVector.h:82
~vtkWarpVector() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453