VTK  9.2.6
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 =========================================================================*/
29 #ifndef vtkWarpVector_h
30 #define vtkWarpVector_h
31 
32 #include "vtkFiltersGeneralModule.h" // For export macro
33 #include "vtkPointSetAlgorithm.h"
34 
35 class VTKFILTERSGENERAL_EXPORT vtkWarpVector : public vtkPointSetAlgorithm
36 {
37 public:
39 
43  static vtkWarpVector* New();
45  void PrintSelf(ostream& os, vtkIndent indent) override;
47 
49 
52  vtkSetMacro(ScaleFactor, double);
53  vtkGetMacro(ScaleFactor, double);
55 
57 
63  vtkSetMacro(OutputPointsPrecision, int);
64  vtkGetMacro(OutputPointsPrecision, int);
66 
68 
69 protected:
70  vtkWarpVector();
71  ~vtkWarpVector() override;
72 
73  int RequestDataObject(vtkInformation* request, vtkInformationVector** inputVector,
74  vtkInformationVector* outputVector) override;
76  double ScaleFactor;
78 
79 private:
80  vtkWarpVector(const vtkWarpVector&) = delete;
81  void operator=(const vtkWarpVector&) = delete;
82 };
83 
84 #endif
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
Store vtkAlgorithm input/output information.
virtual int RequestDataObject(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
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.
a simple class to control print indentation
Definition: vtkIndent.h:39
Superclass for algorithms that produce output of the same type as input.
deform geometry with vector data
Definition: vtkWarpVector.h:35
static vtkPointSetAlgorithm * New()
double ScaleFactor
Definition: vtkWarpVector.h:76
Store zero or more vtkInformation instances.
int OutputPointsPrecision
Definition: vtkWarpVector.h:77