VTK
vtkLinearSubdivisionFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkLinearSubdivisionFilter.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
34#ifndef vtkLinearSubdivisionFilter_h
35#define vtkLinearSubdivisionFilter_h
36
37#include "vtkFiltersModelingModule.h" // For export macro
39
40class vtkIntArray;
41class vtkPointData;
42class vtkPoints;
43class vtkPolyData;
44
45class VTKFILTERSMODELING_EXPORT vtkLinearSubdivisionFilter : public vtkInterpolatingSubdivisionFilter
46{
47public:
49
55
56protected:
59
61 vtkIntArray *edgeData,
62 vtkPoints *outputPts,
63 vtkPointData *outputPD);
64
65private:
67 void operator=(const vtkLinearSubdivisionFilter&) VTK_DELETE_FUNCTION;
68};
69
70#endif
71
72
73// VTK-HeaderTest-Exclude: vtkLinearSubdivisionFilter.h
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:46
generate a subdivision surface using an Interpolating Scheme
generate a subdivision surface using the Linear Scheme
int GenerateSubdivisionPoints(vtkPolyData *inputDS, vtkIntArray *edgeData, vtkPoints *outputPts, vtkPointData *outputPD)
static vtkLinearSubdivisionFilter * New()
Construct object with NumberOfSubdivisions set to 1.
represent and manipulate point attribute data
Definition: vtkPointData.h:38
represent and manipulate 3D points
Definition: vtkPoints.h:40
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:86