dox/Graphics/vtkStructuredGridGeometryFilter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00049
#ifndef __vtkStructuredGridGeometryFilter_h
00050
#define __vtkStructuredGridGeometryFilter_h
00051
00052
#include "vtkStructuredGridToPolyDataFilter.h"
00053
00054 class VTK_GRAPHICS_EXPORT vtkStructuredGridGeometryFilter :
public vtkStructuredGridToPolyDataFilter
00055 {
00056
public:
00057
static vtkStructuredGridGeometryFilter *
New();
00058 vtkTypeRevisionMacro(vtkStructuredGridGeometryFilter,
vtkStructuredGridToPolyDataFilter);
00059
void PrintSelf(ostream& os,
vtkIndent indent);
00060
00062
00064 vtkGetVectorMacro(Extent,
int,6);
00066
00068
void SetExtent(
int iMin,
int iMax,
int jMin,
int jMax,
int kMin,
int kMax);
00069
00071
void SetExtent(
int extent[6]);
00072
00073
protected:
00074 vtkStructuredGridGeometryFilter();
00075 ~vtkStructuredGridGeometryFilter() {}
00076
00077
void Execute();
00078
void ComputeInputUpdateExtents(
vtkDataObject *output );
00079 int Extent[6];
00080
private:
00081 vtkStructuredGridGeometryFilter(
const vtkStructuredGridGeometryFilter&);
00082
void operator=(
const vtkStructuredGridGeometryFilter&);
00083 };
00084
00085
#endif
00086
00087