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) override;
46 
48 
52  virtual void SetInput(vtkMatrix4x4*);
53  vtkGetObjectMacro(Input,vtkMatrix4x4);
55 
60  void Inverse() override;
61 
65  vtkMTimeType GetMTime() override;
66 
71 
72 protected:
75 
76  void InternalUpdate() override;
77  void InternalDeepCopy(vtkAbstractTransform *transform) override;
78 
81 private:
83  void operator=(const vtkMatrixToLinearTransform&) = delete;
84 };
85 
86 #endif
vtkLinearTransform.h
vtkAbstractTransform
superclass for all geometric transformations
Definition: vtkAbstractTransform.h:51
vtkMatrixToLinearTransform::Inverse
void Inverse() override
The input matrix is left as-is, but the transformation matrix is inverted.
vtkMatrixToLinearTransform::GetMTime
vtkMTimeType GetMTime() override
Get the MTime: this is the bit of magic that makes everything work.
vtkMatrixToLinearTransform::InternalDeepCopy
void InternalDeepCopy(vtkAbstractTransform *transform) override
Perform any subclass-specific DeepCopy.
vtkMatrixToLinearTransform::~vtkMatrixToLinearTransform
~vtkMatrixToLinearTransform() override
vtkMatrixToLinearTransform::Input
vtkMatrix4x4 * Input
Definition: vtkMatrixToLinearTransform.h:80
vtkLinearTransform
abstract superclass for linear transformations
Definition: vtkLinearTransform.h:35
vtkMatrixToLinearTransform
convert a matrix to a transform
Definition: vtkMatrixToLinearTransform.h:41
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkMatrix4x4
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:42
vtkMatrixToLinearTransform::MakeTransform
vtkAbstractTransform * MakeTransform() override
Make a new transform of the same type.
vtkMatrixToLinearTransform::New
static vtkMatrixToLinearTransform * New()
vtkMatrixToLinearTransform::vtkMatrixToLinearTransform
vtkMatrixToLinearTransform()
vtkMatrixToLinearTransform::SetInput
virtual void SetInput(vtkMatrix4x4 *)
Set the input matrix.
vtkMatrixToLinearTransform::InternalUpdate
void InternalUpdate() override
Perform any subclass-specific Update.
vtkMatrixToLinearTransform::InverseFlag
int InverseFlag
Definition: vtkMatrixToLinearTransform.h:79
vtkMatrixToLinearTransform::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkMTimeType
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:302