VTK
|
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 "vtkFiltersGeneralModule.h" // For export macro 00040 #include "vtkStructuredGridAlgorithm.h" 00041 00042 class vtkRectilinearGrid; 00043 class vtkStructuredData; 00044 00045 class VTKFILTERSGENERAL_EXPORT vtkRectilinearGridToPointSet : public vtkStructuredGridAlgorithm 00046 { 00047 public: 00048 vtkTypeMacro(vtkRectilinearGridToPointSet, vtkStructuredGridAlgorithm); 00049 virtual void PrintSelf(ostream &os, vtkIndent indent); 00050 00051 static vtkRectilinearGridToPointSet *New(); 00052 00053 protected: 00054 vtkRectilinearGridToPointSet(); 00055 ~vtkRectilinearGridToPointSet(); 00056 00057 int RequestData(vtkInformation *request, 00058 vtkInformationVector **inputVector, 00059 vtkInformationVector *outputVector); 00060 00061 virtual int FillInputPortInformation(int port, vtkInformation *info); 00062 00063 private: 00064 vtkRectilinearGridToPointSet(const vtkRectilinearGridToPointSet &); // Not implemented 00065 void operator=(const vtkRectilinearGridToPointSet &); // Not implemented 00066 00067 int CopyStructure(vtkStructuredGrid *outData, vtkRectilinearGrid *inData); 00068 }; 00069 00070 00071 #endif //__vtkRectilinearGridToPointSet_h