You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
46 lines
1.4 KiB
/*=========================================================================
|
|
|
|
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
|
|
|
|
|
|
|