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

Graphics/vtkImageDataGeometryFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageDataGeometryFilter.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 =========================================================================*/
00047 #ifndef __vtkImageDataGeometryFilter_h
00048 #define __vtkImageDataGeometryFilter_h
00049 
00050 #include "vtkStructuredPointsToPolyDataFilter.h"
00051 
00052 class VTK_GRAPHICS_EXPORT vtkImageDataGeometryFilter : public vtkStructuredPointsToPolyDataFilter
00053 {
00054 public:
00055   vtkTypeRevisionMacro(vtkImageDataGeometryFilter,vtkStructuredPointsToPolyDataFilter);
00056   void PrintSelf(ostream& os, vtkIndent indent);
00057   
00059   static vtkImageDataGeometryFilter *New();
00060 
00061   
00063 
00064   void SetExtent(int extent[6]);
00065   void SetExtent(int iMin, int iMax, int jMin, int jMax, int kMin, int kMax);
00066   int *GetExtent() { return this->Extent;};
00068 
00069 protected:
00070   vtkImageDataGeometryFilter();
00071   ~vtkImageDataGeometryFilter() {};
00072 
00073   void Execute();
00074   int Extent[6];
00075 private:
00076   vtkImageDataGeometryFilter(const vtkImageDataGeometryFilter&);  // Not implemented.
00077   void operator=(const vtkImageDataGeometryFilter&);  // Not implemented.
00078 };
00079 
00080 #endif