VTK
vtkImageWrapPad.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageWrapPad.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
30 #ifndef __vtkImageWrapPad_h
31 #define __vtkImageWrapPad_h
32 
33 
34 #include "vtkImagePadFilter.h"
35 
36 class vtkInformation;
38 
40 {
41 public:
42  static vtkImageWrapPad *New();
44 
45 protected:
48 
49  void ComputeInputUpdateExtent (int inExt[6], int outExt[6], int wExt[6]);
50  void ThreadedRequestData (vtkInformation* request,
51  vtkInformationVector** inputVector,
52  vtkInformationVector* outputVector,
53  vtkImageData ***inData, vtkImageData **outData,
54  int ext[6], int id);
55 private:
56  vtkImageWrapPad(const vtkImageWrapPad&); // Not implemented.
57  void operator=(const vtkImageWrapPad&); // Not implemented.
58 };
59 
60 #endif
61 
62 
63