#include <vtkLoopSubdivisionFilter.h>
Inheritance diagram for vtkLoopSubdivisionFilter:
vtkLoopSubdivisionFilter is an approximating subdivision scheme that creates four new triangles for each triangle in the mesh. The user can specify the NumberOfSubdivisions. Loop's subdivision scheme is described in: Loop, C., "Smooth Subdivision surfaces based on triangles,", Masters Thesis, University of Utah, August 1987. For a nice summary of the technique see, Hoppe, H., et. al, "Piecewise Smooth Surface Reconstruction,:, Proceedings of Siggraph 94 (Orlando, Florida, July 24-29, 1994). In COmputer Graphics Proceedings, Annual COnference Series, 1994, ACM SIGGRAPH, pp. 295-302.
The filter only operates on triangles. Users should use the vtkTriangleFilter to triangulate meshes that contain polygons or triangle strips.
The filter approximates point data using the same scheme. New triangles create at a subdivision step will have the cell data of their parent cell.
Definition at line 70 of file vtkLoopSubdivisionFilter.h.
[NOHEADER] | |
typedef vtkApproximatingSubdivisionFilter | Superclass |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
vtkLoopSubdivisionFilter * | New () |
int | IsTypeOf (const char *type) |
vtkLoopSubdivisionFilter * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkLoopSubdivisionFilter () | |
~vtkLoopSubdivisionFilter () | |
virtual void | Execute () |
void | GenerateSubdivisionPoints (vtkPolyData *inputDS, vtkIntArray *edgeData, vtkPoints *outputPts, vtkPointData *outputPD) |
void | GenerateEvenStencil (vtkIdType p1, vtkPolyData *polys, vtkIdList *stencilIds, double *weights) |
void | GenerateOddStencil (vtkIdType p1, vtkIdType p2, vtkPolyData *polys, vtkIdList *stencilIds, double *weights) |
void | ComputeInputUpdateExtents (vtkDataObject *output) |
|
Reimplemented from vtkApproximatingSubdivisionFilter. Definition at line 76 of file vtkLoopSubdivisionFilter.h. |
|
Definition at line 80 of file vtkLoopSubdivisionFilter.h. |
|
Definition at line 81 of file vtkLoopSubdivisionFilter.h. |
|
Construct object with NumberOfSubdivisions set to 1. Reimplemented from vtkAlgorithm. |
|
Reimplemented from vtkApproximatingSubdivisionFilter. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkApproximatingSubdivisionFilter. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkApproximatingSubdivisionFilter. |
|
Reimplemented from vtkApproximatingSubdivisionFilter. |
|
This method is the old style execute method Reimplemented from vtkApproximatingSubdivisionFilter. |
|
Implements vtkApproximatingSubdivisionFilter. |
|
|
|
|
|
What is the input update extent that is required to produce the desired output? By default, the whole input is always required but this is overridden in many subclasses. Reimplemented from vtkPolyDataSource. |