VTK  9.1.0
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=========================================================================*/
40#ifndef vtkLinearSubdivisionFilter_h
41#define vtkLinearSubdivisionFilter_h
42
43#include "vtkFiltersModelingModule.h" // For export macro
45
46class vtkIntArray;
47class vtkPointData;
48class vtkPoints;
49class vtkPolyData;
50
51class VTKFILTERSMODELING_EXPORT vtkLinearSubdivisionFilter
53{
54public:
56
61 void PrintSelf(ostream& os, vtkIndent indent) override;
63
64protected:
66 ~vtkLinearSubdivisionFilter() override = default;
67
68 int GenerateSubdivisionPoints(vtkPolyData* inputDS, vtkIntArray* edgeData, vtkPoints* outputPts,
69 vtkPointData* outputPD) override;
70
71private:
73 void operator=(const vtkLinearSubdivisionFilter&) = delete;
74};
75
76#endif
a simple class to control print indentation
Definition: vtkIndent.h:43
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:49
generate a subdivision surface using an Interpolating Scheme
generate a subdivision surface using the Linear Scheme
static vtkLinearSubdivisionFilter * New()
Construct object with NumberOfSubdivisions set to 1.
int GenerateSubdivisionPoints(vtkPolyData *inputDS, vtkIntArray *edgeData, vtkPoints *outputPts, vtkPointData *outputPD) override
~vtkLinearSubdivisionFilter() override=default
void PrintSelf(ostream &os, vtkIndent indent) override
Construct object with NumberOfSubdivisions set to 1.
vtkLinearSubdivisionFilter()=default
represent and manipulate point attribute data
Definition: vtkPointData.h:42
represent and manipulate 3D points
Definition: vtkPoints.h:43
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:95