00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkTransformFilter.h,v $ 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00037 #ifndef __vtkTransformFilter_h 00038 #define __vtkTransformFilter_h 00039 00040 #include "vtkPointSetAlgorithm.h" 00041 00042 class vtkAbstractTransform; 00043 00044 class VTK_GRAPHICS_EXPORT vtkTransformFilter : public vtkPointSetAlgorithm 00045 { 00046 public: 00047 static vtkTransformFilter *New(); 00048 vtkTypeRevisionMacro(vtkTransformFilter,vtkPointSetAlgorithm); 00049 void PrintSelf(ostream& os, vtkIndent indent); 00050 00052 unsigned long GetMTime(); 00053 00055 00056 virtual void SetTransform(vtkAbstractTransform*); 00057 vtkGetObjectMacro(Transform,vtkAbstractTransform); 00059 00060 protected: 00061 vtkTransformFilter(); 00062 ~vtkTransformFilter(); 00063 00064 int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00065 vtkAbstractTransform *Transform; 00066 private: 00067 vtkTransformFilter(const vtkTransformFilter&); // Not implemented. 00068 void operator=(const vtkTransformFilter&); // Not implemented. 00069 }; 00070 00071 #endif