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

Filtering/vtkStructuredPointsToUnstructuredGridFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkStructuredPointsToUnstructuredGridFilter.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 =========================================================================*/
00044 #ifndef __vtkStructuredPointsToUnstructuredGridFilter_h
00045 #define __vtkStructuredPointsToUnstructuredGridFilter_h
00046 
00047 #include "vtkUnstructuredGridSource.h"
00048 
00049 class vtkImageData;
00050 
00051 class VTK_FILTERING_EXPORT vtkStructuredPointsToUnstructuredGridFilter : public vtkUnstructuredGridSource
00052 {
00053 public:
00054   vtkTypeRevisionMacro(vtkStructuredPointsToUnstructuredGridFilter,vtkUnstructuredGridSource);
00055   void PrintSelf(ostream& os, vtkIndent indent);
00056 
00058 
00059   void SetInput(vtkImageData *input);
00060   vtkImageData *GetInput();
00062 
00063 protected:
00064   vtkStructuredPointsToUnstructuredGridFilter() {this->NumberOfRequiredInputs = 1;};
00065   ~vtkStructuredPointsToUnstructuredGridFilter() {};
00066 
00067   void ComputeInputUpdateExtents(vtkDataObject *output);
00068 
00069 private:
00070   vtkStructuredPointsToUnstructuredGridFilter(const vtkStructuredPointsToUnstructuredGridFilter&);  // Not implemented.
00071   void operator=(const vtkStructuredPointsToUnstructuredGridFilter&);  // Not implemented.
00072 };
00073 
00074 #endif
00075 
00076