VTK
dox/Filters/General/vtkImageDataToPointSet.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkRectilinearGridToTetrahedra.h
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 =========================================================================*/
00015 /*----------------------------------------------------------------------------
00016  Copyright (c) Sandia Corporation
00017  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
00018 ----------------------------------------------------------------------------*/
00019 
00035 #ifndef __vtkImageDataToPointSet_h
00036 #define __vtkImageDataToPointSet_h
00037 
00038 #include "vtkFiltersGeneralModule.h" // For export macro
00039 #include "vtkStructuredGridAlgorithm.h"
00040 
00041 class vtkImageData;
00042 class vtkStructuredData;
00043 
00044 class VTKFILTERSGENERAL_EXPORT vtkImageDataToPointSet : public vtkStructuredGridAlgorithm
00045 {
00046 public:
00047   vtkTypeMacro(vtkImageDataToPointSet, vtkStructuredGridAlgorithm);
00048   virtual void PrintSelf(ostream &os, vtkIndent indent);
00049 
00050   static vtkImageDataToPointSet *New();
00051 
00052 protected:
00053   vtkImageDataToPointSet();
00054   ~vtkImageDataToPointSet();
00055 
00056   int RequestData(vtkInformation *request,
00057                   vtkInformationVector **inputVector,
00058                   vtkInformationVector *outputVector);
00059 
00060   virtual int FillInputPortInformation(int port, vtkInformation *info);
00061 
00062 private:
00063   vtkImageDataToPointSet(const vtkImageDataToPointSet &); // Not implemented
00064   void operator=(const vtkImageDataToPointSet &);         // Not implemented
00065 
00066   int CopyStructure(vtkStructuredGrid *outData, vtkImageData *inData);
00067 };
00068 
00069 
00070 #endif //__vtkImageDataToPointSet_h