VTK  9.2.6
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=========================================================================*/
34#ifndef vtkCylindricalTransform_h
35#define vtkCylindricalTransform_h
36
37#include "vtkCommonTransformsModule.h" // For export macro
38#include "vtkWarpTransform.h"
39
40class VTKCOMMONTRANSFORMS_EXPORT vtkCylindricalTransform : public vtkWarpTransform
41{
42public:
45 void PrintSelf(ostream& os, vtkIndent indent) override;
46
51
52protected:
55
59 void InternalDeepCopy(vtkAbstractTransform* transform) override;
60
62
65 void ForwardTransformPoint(const float in[3], float out[3]) override;
66 void ForwardTransformPoint(const double in[3], double out[3]) override;
68
69 void ForwardTransformDerivative(const float in[3], float out[3], float derivative[3][3]) override;
71 const double in[3], double out[3], double derivative[3][3]) override;
72
73 void InverseTransformPoint(const float in[3], float out[3]) override;
74 void InverseTransformPoint(const double in[3], double out[3]) override;
75
76 void InverseTransformDerivative(const float in[3], float out[3], float derivative[3][3]) override;
78 const double in[3], double out[3], double derivative[3][3]) override;
79
80private:
82 void operator=(const vtkCylindricalTransform&) = delete;
83};
84
85#endif
superclass for all geometric transformations
cylindrical to rectangular coords and back
void InverseTransformPoint(const double in[3], double out[3]) override
If the InverseFlag is set to 1, then a call to InternalTransformPoint results in a call to InverseTra...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void ForwardTransformDerivative(const double in[3], double out[3], double derivative[3][3]) override
Calculate the forward transform as well as the derivative.
void InverseTransformDerivative(const float in[3], float out[3], float derivative[3][3]) override
Calculate the inverse transform as well as the derivative of the forward transform (that's correct: t...
void ForwardTransformDerivative(const float in[3], float out[3], float derivative[3][3]) override
Calculate the forward transform as well as the derivative.
void InverseTransformPoint(const float in[3], float out[3]) override
If the InverseFlag is set to 1, then a call to InternalTransformPoint results in a call to InverseTra...
~vtkCylindricalTransform() override
void ForwardTransformPoint(const float in[3], float out[3]) override
Internal functions for calculating the transformation.
void ForwardTransformPoint(const double in[3], double out[3]) override
Internal functions for calculating the transformation.
void InternalDeepCopy(vtkAbstractTransform *transform) override
Copy this transform from another of the same type.
void InverseTransformDerivative(const double in[3], double out[3], double derivative[3][3]) override
Calculate the inverse transform as well as the derivative of the forward transform (that's correct: t...
vtkAbstractTransform * MakeTransform() override
Make another transform of the same type.
static vtkCylindricalTransform * New()
a simple class to control print indentation
Definition: vtkIndent.h:40
superclass for nonlinear geometric transformations