VTK
dox/Graphics/vtkRectilinearGridToPointSet.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 
00036 #ifndef __vtkRectilinearGridToPointSet_h
00037 #define __vtkRectilinearGridToPointSet_h
00038 
00039 #include "vtkStructuredGridAlgorithm.h"
00040 
00041 class vtkRectilinearGrid;
00042 class vtkStructuredData;
00043 
00044 class VTK_GRAPHICS_EXPORT vtkRectilinearGridToPointSet : public vtkStructuredGridAlgorithm
00045 {
00046 public:
00047   vtkTypeMacro(vtkRectilinearGridToPointSet, vtkStructuredGridAlgorithm);
00048   virtual void PrintSelf(ostream &os, vtkIndent indent);
00049 
00050   static vtkRectilinearGridToPointSet *New();
00051 
00052 protected:
00053   vtkRectilinearGridToPointSet();
00054   ~vtkRectilinearGridToPointSet();
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   vtkRectilinearGridToPointSet(const vtkRectilinearGridToPointSet &); // Not implemented
00064   void operator=(const vtkRectilinearGridToPointSet &);         // Not implemented
00065 
00066   int CopyStructure(vtkStructuredGrid *outData, vtkRectilinearGrid *inData);
00067 };
00068 
00069 
00070 #endif //__vtkRectilinearGridToPointSet_h