VTK
dox/Graphics/vtkSubdivideTetra.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkSubdivideTetra.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 =========================================================================*/
00024 #ifndef __vtkSubdivideTetra_h
00025 #define __vtkSubdivideTetra_h
00026 
00027 #include "vtkUnstructuredGridAlgorithm.h"
00028 
00029 class VTK_GRAPHICS_EXPORT vtkSubdivideTetra : public vtkUnstructuredGridAlgorithm
00030 {
00031 public:
00032   static vtkSubdivideTetra *New();
00033   vtkTypeMacro(vtkSubdivideTetra,vtkUnstructuredGridAlgorithm);
00034   void PrintSelf(ostream& os, vtkIndent indent);
00035 
00036 
00037 protected:
00038   vtkSubdivideTetra();
00039   ~vtkSubdivideTetra() {};
00040 
00041   int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
00042 
00043 private:
00044   vtkSubdivideTetra(const vtkSubdivideTetra&);  // Not implemented.
00045   void operator=(const vtkSubdivideTetra&);  // Not implemented.
00046 };
00047 
00048 #endif
00049 
00050