VTK
vtkMatrixToLinearTransform.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMatrixToLinearTransform.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 =========================================================================*/
15 
32 #ifndef vtkMatrixToLinearTransform_h
33 #define vtkMatrixToLinearTransform_h
34 
35 #include "vtkCommonTransformsModule.h" // For export macro
36 #include "vtkLinearTransform.h"
37 
38 class vtkMatrix4x4;
39 
40 class VTKCOMMONTRANSFORMS_EXPORT vtkMatrixToLinearTransform : public vtkLinearTransform
41 {
42  public:
45  void PrintSelf (ostream& os, vtkIndent indent) VTK_OVERRIDE;
46 
48 
52  virtual void SetInput(vtkMatrix4x4*);
53  vtkGetObjectMacro(Input,vtkMatrix4x4);
55 
60  void Inverse() VTK_OVERRIDE;
61 
65  vtkMTimeType GetMTime() VTK_OVERRIDE;
66 
70  vtkAbstractTransform *MakeTransform() VTK_OVERRIDE;
71 
72 protected:
74  ~vtkMatrixToLinearTransform() VTK_OVERRIDE;
75 
76  void InternalUpdate() VTK_OVERRIDE;
77  void InternalDeepCopy(vtkAbstractTransform *transform) VTK_OVERRIDE;
78 
79  int InverseFlag;
80  vtkMatrix4x4 *Input;
81 private:
82  vtkMatrixToLinearTransform(const vtkMatrixToLinearTransform&) VTK_DELETE_FUNCTION;
83  void operator=(const vtkMatrixToLinearTransform&) VTK_DELETE_FUNCTION;
84 };
85 
86 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:41
vtkTypeUInt64 vtkMTimeType
Definition: vtkType.h:248
a simple class to control print indentation
Definition: vtkIndent.h:39
superclass for all geometric transformations
virtual void Inverse()=0
Invert the transformation.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
abstract superclass for linear transformations
convert a matrix to a transform