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 =========================================================================*/
31 #ifndef vtkLinearSubdivisionFilter_h
32 #define vtkLinearSubdivisionFilter_h
33 
34 #include "vtkFiltersModelingModule.h" // For export macro
36 
37 class vtkIntArray;
38 class vtkPointData;
39 class vtkPoints;
40 class vtkPolyData;
41 
42 class VTKFILTERSMODELING_EXPORT vtkLinearSubdivisionFilter : public vtkInterpolatingSubdivisionFilter
43 {
44 public:
46 
52 
53 protected:
55  ~vtkLinearSubdivisionFilter () VTK_OVERRIDE {}
56 
58  vtkIntArray *edgeData,
59  vtkPoints *outputPts,
60  vtkPointData *outputPD) VTK_OVERRIDE;
61 
62 private:
63  vtkLinearSubdivisionFilter(const vtkLinearSubdivisionFilter&) VTK_DELETE_FUNCTION;
64  void operator=(const vtkLinearSubdivisionFilter&) VTK_DELETE_FUNCTION;
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:31
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:79
static vtkPolyDataAlgorithm * New()
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:39
generate a subdivision surface using the Linear Scheme
generate a subdivision surface using an Interpolating Scheme
represent and manipulate 3D points
Definition: vtkPoints.h:33