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

dox/Graphics/vtkImageDataGeometryFilter.h

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