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

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 =========================================================================*/
00037 #ifndef __vtkWarpTo_h
00038 #define __vtkWarpTo_h
00039 
00040 #include "vtkPointSetToPointSetFilter.h"
00041 
00042 class VTK_GRAPHICS_EXPORT vtkWarpTo : public vtkPointSetToPointSetFilter
00043 {
00044 public:
00045   static vtkWarpTo *New();
00046   vtkTypeRevisionMacro(vtkWarpTo,vtkPointSetToPointSetFilter);
00047   void PrintSelf(ostream& os, vtkIndent indent);
00048 
00050 
00051   vtkSetMacro(ScaleFactor,double);
00052   vtkGetMacro(ScaleFactor,double);
00054 
00056 
00057   vtkGetVectorMacro(Position,double,3);
00058   vtkSetVector3Macro(Position,double);
00060 
00062 
00064   vtkSetMacro(Absolute,int);
00065   vtkGetMacro(Absolute,int);
00066   vtkBooleanMacro(Absolute,int);
00068   
00069 protected:
00070   vtkWarpTo(); 
00071   ~vtkWarpTo() {};
00072 
00073   void Execute();
00074   double ScaleFactor;
00075   double Position[3];
00076   int   Absolute;
00077 private:
00078   vtkWarpTo(const vtkWarpTo&);  // Not implemented.
00079   void operator=(const vtkWarpTo&);  // Not implemented.
00080 };
00081 
00082 #endif