VTK
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 =========================================================================*/
32 #ifndef vtkWarpVector_h
33 #define vtkWarpVector_h
34 
35 #include "vtkFiltersGeneralModule.h" // For export macro
36 #include "vtkPointSetAlgorithm.h"
37 
38 class VTKFILTERSGENERAL_EXPORT vtkWarpVector : public vtkPointSetAlgorithm
39 {
40 public:
41  static vtkWarpVector *New();
43  void PrintSelf(ostream& os, vtkIndent indent) override;
44 
46 
49  vtkSetMacro(ScaleFactor,double);
50  vtkGetMacro(ScaleFactor,double);
52 
54 
55 protected:
57  ~vtkWarpVector() override;
58 
60  vtkInformationVector **inputVector,
61  vtkInformationVector *outputVector) override;
64  vtkInformationVector *) override;
65  double ScaleFactor;
66 
67 private:
68  vtkWarpVector(const vtkWarpVector&) = delete;
69  void operator=(const vtkWarpVector&) = delete;
70 };
71 
72 #endif
vtkWarpVector::ScaleFactor
double ScaleFactor
Definition: vtkWarpVector.h:65
vtkPointSetAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition: vtkPointSetAlgorithm.h:44
vtkWarpVector::~vtkWarpVector
~vtkWarpVector() override
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:42
vtkWarpVector::New
static vtkWarpVector * New()
vtkPointSetAlgorithm.h
vtkWarpVector::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkWarpVector::vtkWarpVector
vtkWarpVector()
vtkX3D::port
@ port
Definition: vtkX3D.h:447
vtkWarpVector::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkWarpVector::RequestDataObject
int RequestDataObject(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkWarpVector::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:87
vtkX3D::info
@ info
Definition: vtkX3D.h:376
vtkWarpVector
deform geometry with vector data
Definition: vtkWarpVector.h:39