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 =========================================================================*/
33 #ifndef vtkLinearSubdivisionFilter_h
34 #define vtkLinearSubdivisionFilter_h
35 
36 #include "vtkFiltersModelingModule.h" // For export macro
38 
39 class vtkIntArray;
40 class vtkPointData;
41 class vtkPoints;
42 class vtkPolyData;
43 
45 {
46 public:
48 
52 
53 protected:
56 
58  vtkIntArray *edgeData,
59  vtkPoints *outputPts,
60  vtkPointData *outputPD);
61 
62 private:
63  vtkLinearSubdivisionFilter(const vtkLinearSubdivisionFilter&); // Not implemented.
64  void operator=(const vtkLinearSubdivisionFilter&); // Not implemented.
65 };
66 
67 #endif
68 
69 
70 // VTK-HeaderTest-Exclude: vtkLinearSubdivisionFilter.h
virtual int GenerateSubdivisionPoints(vtkPolyData *inputDS, vtkIntArray *edgeData, vtkPoints *outputPts, vtkPointData *outputPD)=0
represent and manipulate point attribute data
Definition: vtkPointData.h:36
#define VTKFILTERSMODELING_EXPORT
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:83
static vtkPolyDataAlgorithm * New()
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:49
generate a subdivision surface using the Linear Scheme
generate a subdivision surface using an Interpolating Scheme
represent and manipulate 3D points
Definition: vtkPoints.h:38