VTK
vtkCylindricalTransform.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCylindricalTransform.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 =========================================================================*/
31 #ifndef vtkCylindricalTransform_h
32 #define vtkCylindricalTransform_h
33 
34 #include "vtkCommonTransformsModule.h" // For export macro
35 #include "vtkWarpTransform.h"
36 
37 class VTKCOMMONTRANSFORMS_EXPORT vtkCylindricalTransform : public vtkWarpTransform
38 {
39 public:
40  static vtkCylindricalTransform *New();
42  void PrintSelf(ostream& os, vtkIndent indent) override;
43 
48 
49 protected:
51  ~vtkCylindricalTransform() override;
52 
56  void InternalDeepCopy(vtkAbstractTransform *transform) override;
57 
59 
62  void ForwardTransformPoint(const float in[3], float out[3]) override;
63  void ForwardTransformPoint(const double in[3], double out[3]) override;
65 
66  void ForwardTransformDerivative(const float in[3], float out[3],
67  float derivative[3][3]) override;
68  void ForwardTransformDerivative(const double in[3], double out[3],
69  double derivative[3][3]) override;
70 
71  void InverseTransformPoint(const float in[3], float out[3]) override;
72  void InverseTransformPoint(const double in[3], double out[3]) override;
73 
74  void InverseTransformDerivative(const float in[3], float out[3],
75  float derivative[3][3]) override;
76  void InverseTransformDerivative(const double in[3], double out[3],
77  double derivative[3][3]) override;
78 
79 private:
81  void operator=(const vtkCylindricalTransform&) = delete;
82 };
83 
84 #endif
85 
virtual void ForwardTransformPoint(const float in[3], float out[3])=0
If the InverseFlag is set to 0, then a call to InternalTransformPoint results in a call to ForwardTra...
virtual void InverseTransformPoint(const float in[3], float out[3])
If the InverseFlag is set to 1, then a call to InternalTransformPoint results in a call to InverseTra...
virtual void InverseTransformDerivative(const float in[3], float out[3], float derivative[3][3])
Calculate the inverse transform as well as the derivative of the forward transform (that's correct: t...
virtual vtkAbstractTransform * MakeTransform()=0
Make another transform of the same type.
virtual void ForwardTransformDerivative(const float in[3], float out[3], float derivative[3][3])=0
Calculate the forward transform as well as the derivative.
virtual void InternalDeepCopy(vtkAbstractTransform *)
Perform any subclass-specific DeepCopy.
a simple class to control print indentation
Definition: vtkIndent.h:33
superclass for all geometric transformations
superclass for nonlinear geometric transformations
cylindrical to rectangular coords and back
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.