VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Graphics
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
36
class
vtkHyperOctreeCursor
;
37
class
vtkCellData
;
38
class
vtkDataSetAttributes
;
39
40
class
VTK_GRAPHICS_EXPORT
vtkHyperOctreeToUniformGridFilter
:
public
vtkImageAlgorithm
41
{
42
public
:
43
static
vtkHyperOctreeToUniformGridFilter
*
New
();
44
vtkTypeMacro(
vtkHyperOctreeToUniformGridFilter
,
vtkImageAlgorithm
);
45
void
PrintSelf
(ostream& os,
vtkIndent
indent);
46
47
protected
:
48
vtkHyperOctreeToUniformGridFilter
();
49
~
vtkHyperOctreeToUniformGridFilter
();
50
51
int
RequestInformation
(
vtkInformation
* vtkNotUsed(request),
52
vtkInformationVector
**inputVector,
53
vtkInformationVector
*outputVector);
54
55
virtual
int
RequestData
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
56
virtual
int
FillInputPortInformation
(
int
port
,
vtkInformation
*
info
);
57
58
void
CopyCellData(
int
cellExtent[6]);
59
60
// Variables used by generate recursively.
61
// It avoids to pass to much argument.
62
vtkDataSetAttributes
*
InputCD
;
63
vtkCellData
*
OutputCD
;
64
vtkHyperOctreeCursor
*
Cursor
;
65
int
YExtent
;
66
int
ZExtent
;
67
vtkImageData
*
Output
;
68
69
private
:
70
vtkHyperOctreeToUniformGridFilter
(
const
vtkHyperOctreeToUniformGridFilter
&);
// Not implemented.
71
void
operator=(
const
vtkHyperOctreeToUniformGridFilter
&);
// Not implemented.
72
};
73
74
#endif
Generated on Wed May 30 2012 13:22:00 for VTK by
1.8.1