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 =========================================================================*/
34 #ifndef vtkLinearSubdivisionFilter_h
35 #define vtkLinearSubdivisionFilter_h
36 
37 #include "vtkFiltersModelingModule.h" // For export macro
39 
40 class vtkIntArray;
41 class vtkPointData;
42 class vtkPoints;
43 class vtkPolyData;
44 
45 class VTKFILTERSMODELING_EXPORT vtkLinearSubdivisionFilter
47 {
48 public:
50 
55  void PrintSelf(ostream& os, vtkIndent indent) override;
57 
58 protected:
59  vtkLinearSubdivisionFilter() = default;
60  ~vtkLinearSubdivisionFilter() override = default;
61 
62  int GenerateSubdivisionPoints(vtkPolyData* inputDS, vtkIntArray* edgeData, vtkPoints* outputPts,
63  vtkPointData* outputPD) override;
64 
65 private:
67  void operator=(const vtkLinearSubdivisionFilter&) = delete;
68 };
69 
70 #endif
virtual int GenerateSubdivisionPoints(vtkPolyData *inputDS, vtkIntArray *edgeData, vtkPoints *outputPts, vtkPointData *outputPD)=0
represent and manipulate point attribute data
Definition: vtkPointData.h:41
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:90
static vtkPolyDataAlgorithm * New()
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:45
a simple class to control print indentation
Definition: vtkIndent.h:39
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
generate a subdivision surface using the Linear Scheme
generate a subdivision surface using an Interpolating Scheme
represent and manipulate 3D points
Definition: vtkPoints.h:39