VTK
vtkTransformFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTransformFilter.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 =========================================================================*/
40 #ifndef __vtkTransformFilter_h
41 #define __vtkTransformFilter_h
42 
43 #include "vtkPointSetAlgorithm.h"
44 
46 
48 {
49 public:
50  static vtkTransformFilter *New();
52  void PrintSelf(ostream& os, vtkIndent indent);
53 
55  unsigned long GetMTime();
56 
58 
59  virtual void SetTransform(vtkAbstractTransform*);
60  vtkGetObjectMacro(Transform,vtkAbstractTransform);
62 
63 protected:
66 
69 private:
70  vtkTransformFilter(const vtkTransformFilter&); // Not implemented.
71  void operator=(const vtkTransformFilter&); // Not implemented.
72 };
73 
74 #endif