/*========================================================================= Program: Visualization Toolkit Module: $RCSfile: vtkSubdivideTetra.h,v $ Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ // .NAME vtkSubdivideTetra - subdivide one tetrahedron into twelve for every tetra // .SECTION Description // This filter subdivides tetrahedra in an unstructured grid into twelve tetrahedra. #ifndef __vtkSubdivideTetra_h #define __vtkSubdivideTetra_h #include "vtkUnstructuredGridAlgorithm.h" class VTK_GRAPHICS_EXPORT vtkSubdivideTetra : public vtkUnstructuredGridAlgorithm { public: static vtkSubdivideTetra *New(); vtkTypeRevisionMacro(vtkSubdivideTetra,vtkUnstructuredGridAlgorithm); void PrintSelf(ostream& os, vtkIndent indent); protected: vtkSubdivideTetra(); ~vtkSubdivideTetra() {}; int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); private: vtkSubdivideTetra(const vtkSubdivideTetra&); // Not implemented. void operator=(const vtkSubdivideTetra&); // Not implemented. }; #endif