OSDN Git Service

FIRST REPOSITORY
[eos/hostdependOTHERS.git] / I386LINUX / util / I386LINUX / include / vtk / vtkSubdivideTetra.h
1 /*=========================================================================
2
3   Program:   Visualization Toolkit
4   Module:    $RCSfile: vtkSubdivideTetra.h,v $
5   Language:  C++
6   Date:      $Date: 2002/01/22 15:29:50 $
7   Version:   $Revision: 1.16 $
8
9   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
10   All rights reserved.
11   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
12
13      This software is distributed WITHOUT ANY WARRANTY; without even 
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15      PURPOSE.  See the above copyright notice for more information.
16
17 =========================================================================*/
18 // .NAME vtkSubdivideTetra - subdivide one tetrahedron into twelve for every tetra
19 // .SECTION Description
20 // This filter subdivides tetrahedra in an unstructured grid into twelve tetrahedra.
21
22
23 #ifndef __vtkSubdivideTetra_h
24 #define __vtkSubdivideTetra_h
25
26 #include "vtkUnstructuredGridToUnstructuredGridFilter.h"
27
28 class VTK_GRAPHICS_EXPORT vtkSubdivideTetra : public vtkUnstructuredGridToUnstructuredGridFilter
29 {
30 public:
31   static vtkSubdivideTetra *New();
32   vtkTypeRevisionMacro(vtkSubdivideTetra,vtkUnstructuredGridToUnstructuredGridFilter);
33   void PrintSelf(ostream& os, vtkIndent indent);
34
35
36 protected:
37   vtkSubdivideTetra();
38   ~vtkSubdivideTetra() {};
39
40   void Execute();
41
42 private:
43   vtkSubdivideTetra(const vtkSubdivideTetra&);  // Not implemented.
44   void operator=(const vtkSubdivideTetra&);  // Not implemented.
45 };
46
47 #endif
48
49