VTK
vtkHyperOctreeToUniformGridFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkHyperOctreeToUniformGridFilter.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 =========================================================================*/
31 #ifndef __vtkHyperOctreeToUniformGridFilter_h
32 #define __vtkHyperOctreeToUniformGridFilter_h
33 
34 #include "vtkImageAlgorithm.h"
35 
37 class vtkCellData;
39 
41 {
42 public:
45  void PrintSelf(ostream& os, vtkIndent indent);
46 
47 protected:
50 
51  int RequestInformation (vtkInformation * vtkNotUsed(request),
52  vtkInformationVector **inputVector,
53  vtkInformationVector *outputVector);
54 
57 
58  void CopyCellData(int cellExtent[6]);
59 
60  // Variables used by generate recursively.
61  // It avoids to pass to much argument.
65  int YExtent;
66  int ZExtent;
68 
69 private:
71  void operator=(const vtkHyperOctreeToUniformGridFilter&); // Not implemented.
72 };
73 
74 #endif