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 
37 
38 class vtkIntArray;
39 class vtkPointData;
40 class vtkPoints;
41 class vtkPolyData;
42 
44 {
45 public:
47 
51 
52 protected:
55 
56  void GenerateSubdivisionPoints (vtkPolyData *inputDS,
57  vtkIntArray *edgeData,
58  vtkPoints *outputPts,
59  vtkPointData *outputPD);
60 
61 private:
62  vtkLinearSubdivisionFilter(const vtkLinearSubdivisionFilter&); // Not implemented.
63  void operator=(const vtkLinearSubdivisionFilter&); // Not implemented.
64 };
65 
66 #endif
67 
68 
#define VTK_GRAPHICS_EXPORT
represent and manipulate point attribute data
Definition: vtkPointData.h:35
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:81
static vtkPolyDataAlgorithm * New()
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:42
virtual void GenerateSubdivisionPoints(vtkPolyData *inputDS, vtkIntArray *edgeData, vtkPoints *outputPts, vtkPointData *outputPD)=0
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