Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

dox/Graphics/vtkWarpTo.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkWarpTo.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 =========================================================================*/ 00025 #ifndef __vtkWarpTo_h 00026 #define __vtkWarpTo_h 00027 00028 #include "vtkPointSetToPointSetFilter.h" 00029 00030 class VTK_GRAPHICS_EXPORT vtkWarpTo : public vtkPointSetToPointSetFilter 00031 { 00032 public: 00033 static vtkWarpTo *New(); 00034 vtkTypeRevisionMacro(vtkWarpTo,vtkPointSetToPointSetFilter); 00035 void PrintSelf(ostream& os, vtkIndent indent); 00036 00038 00039 vtkSetMacro(ScaleFactor,double); 00040 vtkGetMacro(ScaleFactor,double); 00042 00044 00045 vtkGetVectorMacro(Position,double,3); 00046 vtkSetVector3Macro(Position,double); 00048 00050 00052 vtkSetMacro(Absolute,int); 00053 vtkGetMacro(Absolute,int); 00054 vtkBooleanMacro(Absolute,int); 00056 00057 protected: 00058 vtkWarpTo(); 00059 ~vtkWarpTo() {}; 00060 00061 void Execute(); 00062 double ScaleFactor; 00063 double Position[3]; 00064 int Absolute; 00065 private: 00066 vtkWarpTo(const vtkWarpTo&); // Not implemented. 00067 void operator=(const vtkWarpTo&); // Not implemented. 00068 }; 00069 00070 #endif