VTK  9.0.1
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 
29 #ifndef vtkMatrixToLinearTransform_h
30 #define vtkMatrixToLinearTransform_h
31 
32 #include "vtkCommonTransformsModule.h" // For export macro
33 #include "vtkLinearTransform.h"
34 
35 class vtkMatrix4x4;
36 
37 class VTKCOMMONTRANSFORMS_EXPORT vtkMatrixToLinearTransform : public vtkLinearTransform
38 {
39 public:
42  void PrintSelf(ostream& os, vtkIndent indent) override;
43 
45 
49  virtual void SetInput(vtkMatrix4x4*);
50  vtkGetObjectMacro(Input, vtkMatrix4x4);
52 
57  void Inverse() override;
58 
62  vtkMTimeType GetMTime() override;
63 
68 
69 protected:
71  ~vtkMatrixToLinearTransform() override;
72 
73  void InternalUpdate() override;
74  void InternalDeepCopy(vtkAbstractTransform* transform) override;
75 
78 
79 private:
81  void operator=(const vtkMatrixToLinearTransform&) = delete;
82 };
83 
84 #endif
vtkLinearTransform.h
vtkHomogeneousTransform::InternalDeepCopy
void InternalDeepCopy(vtkAbstractTransform *transform) override
Perform any subclass-specific DeepCopy.
vtkAbstractTransform
superclass for all geometric transformations
Definition: vtkAbstractTransform.h:50
vtkAbstractTransform::Inverse
virtual void Inverse()=0
Invert the transformation.
vtkObject::New
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkAbstractTransform::InternalUpdate
virtual void InternalUpdate()
Perform any subclass-specific Update.
Definition: vtkAbstractTransform.h:317
vtkLinearTransform::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkMatrixToLinearTransform::Input
vtkMatrix4x4 * Input
Definition: vtkMatrixToLinearTransform.h:77
vtkLinearTransform
abstract superclass for linear transformations
Definition: vtkLinearTransform.h:31
vtkMatrixToLinearTransform
convert a matrix to a transform
Definition: vtkMatrixToLinearTransform.h:37
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkMatrix4x4
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:35
vtkAbstractTransform::GetMTime
vtkMTimeType GetMTime() override
Override GetMTime necessary because of inverse transforms.
vtkAbstractTransform::MakeTransform
virtual vtkAbstractTransform * MakeTransform()=0
Make another transform of the same type.
vtkMatrixToLinearTransform::InverseFlag
int InverseFlag
Definition: vtkMatrixToLinearTransform.h:76
vtkMTimeType
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:293