VTK
dox/Imaging/Core/vtkImageMirrorPad.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkImageMirrorPad.h
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 __vtkImageMirrorPad_h
00026 #define __vtkImageMirrorPad_h
00027 
00028 
00029 #include "vtkImagingCoreModule.h" // For export macro
00030 #include "vtkImagePadFilter.h"
00031 
00032 class VTKIMAGINGCORE_EXPORT vtkImageMirrorPad : public vtkImagePadFilter
00033 {
00034 public:
00035   static vtkImageMirrorPad *New();
00036   vtkTypeMacro(vtkImageMirrorPad,vtkImagePadFilter);
00037 
00038 protected:
00039   vtkImageMirrorPad() {};
00040   ~vtkImageMirrorPad() {};
00041 
00042   void ComputeInputUpdateExtent(int inExt[6], int outExt[6], int wExt[6]);
00043   void ThreadedRequestData (vtkInformation* request,
00044                             vtkInformationVector** inputVector,
00045                             vtkInformationVector* outputVector,
00046                             vtkImageData ***inData, vtkImageData **outData,
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 
00057 // VTK-HeaderTest-Exclude: vtkImageMirrorPad.h