VTK
vtkLoopSubdivisionFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkLoopSubdivisionFilter.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 =========================================================================*/
48 #ifndef vtkLoopSubdivisionFilter_h
49 #define vtkLoopSubdivisionFilter_h
50 
51 #include "vtkFiltersModelingModule.h" // For export macro
53 
54 class vtkPolyData;
55 class vtkIntArray;
56 class vtkPoints;
57 class vtkIdList;
58 
60 {
61 public:
63 
64  static vtkLoopSubdivisionFilter *New();
67 
68 protected:
71 
73 
74  int GenerateSubdivisionPoints (vtkPolyData *inputDS, vtkIntArray *edgeData,
75  vtkPoints *outputPts,
76  vtkPointData *outputPD);
77  void GenerateEvenStencil (vtkIdType p1, vtkPolyData *polys,
78  vtkIdList *stencilIds, double *weights);
79  void GenerateOddStencil (vtkIdType p1, vtkIdType p2, vtkPolyData *polys,
80  vtkIdList *stencilIds, double *weights);
81 
83 
84 private:
85  vtkLoopSubdivisionFilter(const vtkLoopSubdivisionFilter&); // Not implemented.
86  void operator=(const vtkLoopSubdivisionFilter&); // Not implemented.
87 };
88 
89 #endif
90 // VTK-HeaderTest-Exclude: vtkLoopSubdivisionFilter.h
represent and manipulate point attribute data
Definition: vtkPointData.h:36
Store vtkAlgorithm input/output information.
#define VTKFILTERSMODELING_EXPORT
int vtkIdType
Definition: vtkType.h:275
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:83
static vtkPolyDataAlgorithm * New()
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:49
virtual int GenerateSubdivisionPoints(vtkPolyData *inputDS, vtkIntArray *edgeData, vtkPoints *outputPts, vtkPointData *outputPD)=0
list of point or cell ids
Definition: vtkIdList.h:35
generate a subdivision surface using an Approximating Scheme
Store zero or more vtkInformation instances.
generate a subdivision surface using the Loop Scheme
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
represent and manipulate 3D points
Definition: vtkPoints.h:38