Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkStructuredGridGeometryFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkStructuredGridGeometryFilter.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 =========================================================================*/
00062 #ifndef __vtkStructuredGridGeometryFilter_h
00063 #define __vtkStructuredGridGeometryFilter_h
00064 
00065 #include "vtkStructuredGridToPolyDataFilter.h"
00066 
00067 class VTK_GRAPHICS_EXPORT vtkStructuredGridGeometryFilter : public vtkStructuredGridToPolyDataFilter
00068 {
00069 public:
00070   static vtkStructuredGridGeometryFilter *New();
00071   vtkTypeRevisionMacro(vtkStructuredGridGeometryFilter,vtkStructuredGridToPolyDataFilter);
00072   void PrintSelf(ostream& os, vtkIndent indent);
00073 
00075 
00077   vtkGetVectorMacro(Extent,int,6);
00079 
00081   void SetExtent(int iMin, int iMax, int jMin, int jMax, int kMin, int kMax);
00082 
00084   void SetExtent(int extent[6]);
00085 
00086 protected:
00087   vtkStructuredGridGeometryFilter();
00088   ~vtkStructuredGridGeometryFilter() {}
00089 
00090   void Execute();
00091   void ComputeInputUpdateExtents( vtkDataObject *output );
00092   int Extent[6];
00093 private:
00094   vtkStructuredGridGeometryFilter(const vtkStructuredGridGeometryFilter&);  // Not implemented.
00095   void operator=(const vtkStructuredGridGeometryFilter&);  // Not implemented.
00096 };
00097 
00098 #endif
00099 
00100