You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
C
50 lines
1.5 KiB
C
|
3 weeks ago
|
/*=========================================================================
|
||
|
|
|
||
|
|
Program: Visualization Toolkit
|
||
|
|
Module: vtkSubdivideTetra.h
|
||
|
|
|
||
|
|
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.
|
||
|
|
|
||
|
|
=========================================================================*/
|
||
|
|
/**
|
||
|
|
* @class vtkSubdivideTetra
|
||
|
|
* @brief subdivide one tetrahedron into twelve for every tetra
|
||
|
|
*
|
||
|
|
* This filter subdivides tetrahedra in an unstructured grid into twelve tetrahedra.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef vtkSubdivideTetra_h
|
||
|
|
#define vtkSubdivideTetra_h
|
||
|
|
|
||
|
|
#include "vtkFiltersModelingModule.h" // For export macro
|
||
|
|
#include "vtkUnstructuredGridAlgorithm.h"
|
||
|
|
|
||
|
|
class VTKFILTERSMODELING_EXPORT vtkSubdivideTetra : public vtkUnstructuredGridAlgorithm
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static vtkSubdivideTetra *New();
|
||
|
|
vtkTypeMacro(vtkSubdivideTetra,vtkUnstructuredGridAlgorithm);
|
||
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
||
|
|
|
||
|
|
|
||
|
|
protected:
|
||
|
|
vtkSubdivideTetra();
|
||
|
|
~vtkSubdivideTetra() {}
|
||
|
|
|
||
|
|
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
|
||
|
|
|
||
|
|
private:
|
||
|
|
vtkSubdivideTetra(const vtkSubdivideTetra&) VTK_DELETE_FUNCTION;
|
||
|
|
void operator=(const vtkSubdivideTetra&) VTK_DELETE_FUNCTION;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
|