VTK  9.2.6
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=========================================================================*/
43#ifndef vtkLinearSubdivisionFilter_h
44#define vtkLinearSubdivisionFilter_h
45
46#include "vtkFiltersModelingModule.h" // For export macro
48
49class vtkIntArray;
50class vtkPointData;
51class vtkPoints;
52class vtkPolyData;
53
54class VTKFILTERSMODELING_EXPORT vtkLinearSubdivisionFilter
56{
57public:
59
64 void PrintSelf(ostream& os, vtkIndent indent) override;
66
67protected:
69 ~vtkLinearSubdivisionFilter() override = default;
70
71 int GenerateSubdivisionPoints(vtkPolyData* inputDS, vtkIntArray* edgeData, vtkPoints* outputPts,
72 vtkPointData* outputPD) override;
73
74private:
76 void operator=(const vtkLinearSubdivisionFilter&) = delete;
77};
78
79#endif
a simple class to control print indentation
Definition vtkIndent.h:49
dynamic, self-adjusting array of int
Definition vtkIntArray.h:55
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
represent and manipulate 3D points
Definition vtkPoints.h:49
concrete dataset represents vertices, lines, polygons, and triangle strips