00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkImageWrapPad.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 =========================================================================*/ 00038 #ifndef __vtkImageWrapPad_h 00039 #define __vtkImageWrapPad_h 00040 00041 00042 #include "vtkImagePadFilter.h" 00043 00044 class vtkInformation; 00045 class vtkInformationVector; 00046 00047 class VTK_IMAGING_EXPORT vtkImageWrapPad : public vtkImagePadFilter 00048 { 00049 public: 00050 static vtkImageWrapPad *New(); 00051 vtkTypeRevisionMacro(vtkImageWrapPad,vtkImagePadFilter); 00052 00053 protected: 00054 vtkImageWrapPad() {}; 00055 ~vtkImageWrapPad() {}; 00056 00057 void ComputeInputUpdateExtent (int inExt[6], int outExt[6], int wExt[6]); 00058 void ThreadedRequestData (vtkInformation *request, 00059 vtkInformationVector *inputVector, 00060 vtkInformationVector *outputVector, 00061 vtkImageData ***inData, vtkImageData **outData, 00062 int ext[6], int id); 00063 private: 00064 vtkImageWrapPad(const vtkImageWrapPad&); // Not implemented. 00065 void operator=(const vtkImageWrapPad&); // Not implemented. 00066 }; 00067 00068 #endif 00069 00070 00071