VTK  9.2.5
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 =========================================================================*/
113 #ifndef vtkLinearSubdivisionFilter_h
114 #define vtkLinearSubdivisionFilter_h
115 
116 #include "vtkFiltersModelingModule.h" // For export macro
118 
119 class vtkIntArray;
120 class vtkPointData;
121 class vtkPoints;
122 class vtkPolyData;
123 
124 class VTKFILTERSMODELING_EXPORT vtkLinearSubdivisionFilter
126 {
127 public:
129 
134  void PrintSelf(ostream& os, vtkIndent indent) override;
136 
137 protected:
139  ~vtkLinearSubdivisionFilter() override = default;
140 
141  int GenerateSubdivisionPoints(vtkPolyData* inputDS, vtkIntArray* edgeData, vtkPoints* outputPts,
142  vtkPointData* outputPD) override;
143 
144 private:
146  void operator=(const vtkLinearSubdivisionFilter&) = delete;
147 };
148 
149 #endif
a simple class to control print indentation
Definition: vtkIndent.h:119
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:155
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:151
represent and manipulate 3D points
Definition: vtkPoints.h:149
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:200