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

vtkImageMirrorPad.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageMirrorPad.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00029 #ifndef __vtkImageMirrorPad_h
00030 #define __vtkImageMirrorPad_h
00031 
00032 
00033 #include "vtkImagePadFilter.h"
00034 
00035 class VTK_IMAGING_EXPORT vtkImageMirrorPad : public vtkImagePadFilter
00036 {
00037 public:
00038   static vtkImageMirrorPad *New();
00039   vtkTypeRevisionMacro(vtkImageMirrorPad,vtkImagePadFilter);
00040 
00041 protected:
00042   vtkImageMirrorPad() {};
00043   ~vtkImageMirrorPad() {};
00044 
00045   void ComputeInputUpdateExtent(int inExt[6], int outExt[6]);
00046   void ThreadedExecute(vtkImageData *inData, vtkImageData *outRegion, 
00047                        int ext[6], int id);
00048 private:
00049   vtkImageMirrorPad(const vtkImageMirrorPad&);  // Not implemented.
00050   void operator=(const vtkImageMirrorPad&);  // Not implemented.
00051 };
00052 
00053 #endif
00054 
00055 
00056