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 =========================================================================*/
33 #ifndef vtkCylindricalTransform_h
34 #define vtkCylindricalTransform_h
35 
36 #include "vtkCommonTransformsModule.h" // For export macro
37 #include "vtkWarpTransform.h"
38 
40 {
41 public:
44  virtual void PrintSelf(ostream& os, vtkIndent indent);
45 
48 
49 protected:
52 
55 
57 
58  void ForwardTransformPoint(const float in[3], float out[3]);
59  void ForwardTransformPoint(const double in[3], double out[3]);
61 
62  void ForwardTransformDerivative(const float in[3], float out[3],
63  float derivative[3][3]);
64  void ForwardTransformDerivative(const double in[3], double out[3],
65  double derivative[3][3]);
66 
67  void InverseTransformPoint(const float in[3], float out[3]);
68  void InverseTransformPoint(const double in[3], double out[3]);
69 
70  void InverseTransformDerivative(const float in[3], float out[3],
71  float derivative[3][3]);
72  void InverseTransformDerivative(const double in[3], double out[3],
73  double derivative[3][3]);
74 
75 private:
76  vtkCylindricalTransform(const vtkCylindricalTransform&); // Not implemented.
77  void operator=(const vtkCylindricalTransform&); // Not implemented.
78 };
79 
80 #endif
81 
vtkCylindricalTransform::~vtkCylindricalTransform
~vtkCylindricalTransform()
vtkAbstractTransform
superclass for all geometric transformations
Definition: vtkAbstractTransform.h:50
vtkCylindricalTransform::ForwardTransformDerivative
void ForwardTransformDerivative(const float in[3], float out[3], float derivative[3][3])
vtkCylindricalTransform::PrintSelf
virtual void PrintSelf(ostream &os, vtkIndent indent)
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkgl::in
GLuint in
Definition: vtkgl.h:16905
vtkCylindricalTransform::InverseTransformDerivative
void InverseTransformDerivative(const float in[3], float out[3], float derivative[3][3])
vtkCommonTransformsModule.h
vtkCylindricalTransform::ForwardTransformPoint
void ForwardTransformPoint(const double in[3], double out[3])
VTKCOMMONTRANSFORMS_EXPORT
#define VTKCOMMONTRANSFORMS_EXPORT
Definition: vtkCommonTransformsModule.h:15
vtkCylindricalTransform
cylindrical to rectangular coords and back
Definition: vtkCylindricalTransform.h:40
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkCylindricalTransform::ForwardTransformPoint
void ForwardTransformPoint(const float in[3], float out[3])
vtkCylindricalTransform::ForwardTransformDerivative
void ForwardTransformDerivative(const double in[3], double out[3], double derivative[3][3])
vtkCylindricalTransform::InternalDeepCopy
void InternalDeepCopy(vtkAbstractTransform *transform)
vtkCylindricalTransform::New
static vtkCylindricalTransform * New()
vtkCylindricalTransform::vtkCylindricalTransform
vtkCylindricalTransform()
vtkWarpTransform.h
vtkCylindricalTransform::InverseTransformDerivative
void InverseTransformDerivative(const double in[3], double out[3], double derivative[3][3])
vtkCylindricalTransform::InverseTransformPoint
void InverseTransformPoint(const double in[3], double out[3])
vtkgl::transform
GLuint GLenum GLenum transform
Definition: vtkgl.h:16451
vtkCylindricalTransform::MakeTransform
vtkAbstractTransform * MakeTransform()
vtkCylindricalTransform::InverseTransformPoint
void InverseTransformPoint(const float in[3], float out[3])
vtkWarpTransform
superclass for nonlinear geometric transformations
Definition: vtkWarpTransform.h:31