Main Page | Class Hierarchy | Alphabetical List | Class List | Directories | 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   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00053 #ifndef __vtkStructuredGridGeometryFilter_h
00054 #define __vtkStructuredGridGeometryFilter_h
00055 
00056 #include "vtkStructuredGridToPolyDataFilter.h"
00057 
00058 class VTK_GRAPHICS_EXPORT vtkStructuredGridGeometryFilter : public vtkStructuredGridToPolyDataFilter
00059 {
00060 public:
00061   static vtkStructuredGridGeometryFilter *New();
00062   vtkTypeRevisionMacro(vtkStructuredGridGeometryFilter,vtkStructuredGridToPolyDataFilter);
00063   void PrintSelf(ostream& os, vtkIndent indent);
00064 
00066 
00068   vtkGetVectorMacro(Extent,int,6);
00070 
00072   void SetExtent(int iMin, int iMax, int jMin, int jMax, int kMin, int kMax);
00073 
00075   void SetExtent(int extent[6]);
00076 
00077 protected:
00078   vtkStructuredGridGeometryFilter();
00079   ~vtkStructuredGridGeometryFilter() {}
00080 
00081   void Execute();
00082   void ComputeInputUpdateExtents( vtkDataObject *output );
00083   int Extent[6];
00084 private:
00085   vtkStructuredGridGeometryFilter(const vtkStructuredGridGeometryFilter&);  // Not implemented.
00086   void operator=(const vtkStructuredGridGeometryFilter&);  // Not implemented.
00087 };
00088 
00089 #endif
00090 
00091