vtkDataSetSurfaceFilter Class Reference
#include <vtkDataSetSurfaceFilter.h>
Inheritance diagram for vtkDataSetSurfaceFilter:
[legend]Collaboration diagram for vtkDataSetSurfaceFilter:
[legend]List of all members.
Detailed Description
Extracts outer (polygonal) surface.
vtkDataSetSurfaceFilter is a faster version of vtkGeometry filter, but it does not have an option to select bounds. It may use more memory than vtkGeometryFilter. It only has one option: whether to use triangle strips when the input type is structured.
- See also:
- vtkGeometryFilter vtkStructuredGridGeometryFilter.
- Created by:
-
- CVS contributions (if > 5%):
- Law, Charles (71%)
- Hoffman, Bill (7%)
- Schroeder, Will (6%)
- Henderson, Amy (6%)
- CVS logs (CVSweb):
.h (/Graphics/vtkDataSetSurfaceFilter
.h)
.cxx (/Graphics/vtkDataSetSurfaceFilter
.cxx)
- Tests:
- vtkDataSetSurfaceFilter (Tests)
Definition at line 65 of file vtkDataSetSurfaceFilter.h.
|
Public Types |
typedef vtkDataSetToPolyDataFilter | Superclass |
Public Member Functions |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
|
virtual void | SetUseStrips (int) |
virtual int | GetUseStrips () |
virtual void | UseStripsOn () |
virtual void | UseStripsOff () |
Static Public Member Functions |
vtkDataSetSurfaceFilter * | New () |
int | IsTypeOf (const char *type) |
vtkDataSetSurfaceFilter * | SafeDownCast (vtkObject *o) |
Protected Member Functions |
| vtkDataSetSurfaceFilter () |
| ~vtkDataSetSurfaceFilter () |
void | ComputeInputUpdateExtents (vtkDataObject *output) |
void | Execute () |
void | StructuredExecute (vtkDataSet *input, int *ext) |
void | UnstructuredGridExecute () |
void | DataSetExecute () |
void | ExecuteInformation () |
void | ExecuteFaceStrips (vtkDataSet *input, int maxFlag, int *ext, int aAxis, int bAxis, int cAxis) |
void | ExecuteFaceQuads (vtkDataSet *input, int maxFlag, int *ext, int aAxis, int bAxis, int cAxis) |
void | InitializeQuadHash (vtkIdType numPoints) |
void | DeleteQuadHash () |
void | InsertQuadInHash (vtkIdType a, vtkIdType b, vtkIdType c, vtkIdType d, vtkIdType sourceId) |
void | InsertTriInHash (vtkIdType a, vtkIdType b, vtkIdType c, vtkIdType sourceId) |
void | InitQuadHashTraversal () |
vtkFastGeomQuad * | GetNextVisibleQuadFromHash () |
vtkIdType | GetOutputPointId (vtkIdType inPtId, vtkDataSet *input, vtkPoints *outPts, vtkPointData *outPD) |
void | InitFastGeomQuadAllocation (int numberOfCells) |
vtkFastGeomQuad * | NewFastGeomQuad () |
void | DeleteAllFastGeomQuads () |
Protected Attributes |
int | UseStrips |
vtkFastGeomQuad ** | QuadHash |
vtkIdType | QuadHashLength |
vtkFastGeomQuad * | QuadHashTraversal |
vtkIdType | QuadHashTraversalIndex |
vtkIdType * | PointMap |
vtkIdType | NumberOfNewCells |
int | FastGeomQuadArrayLength |
int | NumberOfFastGeomQuadArrays |
vtkFastGeomQuad ** | FastGeomQuadArrays |
int | NextArrayIndex |
int | NextQuadIndex |
Member Typedef Documentation
Constructor & Destructor Documentation
vtkDataSetSurfaceFilter::vtkDataSetSurfaceFilter |
( |
|
) |
[protected] |
|
Member Function Documentation
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkAlgorithm. |
virtual const char* vtkDataSetSurfaceFilter::GetClassName |
( |
|
) |
[virtual] |
|
int vtkDataSetSurfaceFilter::IsTypeOf |
( |
const char * |
type |
) |
[static] |
|
|
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 vtkDataSetToPolyDataFilter. |
virtual int vtkDataSetSurfaceFilter::IsA |
( |
const char * |
type |
) |
[virtual] |
|
|
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 vtkDataSetToPolyDataFilter. |
void vtkDataSetSurfaceFilter::PrintSelf |
( |
ostream & |
os, |
|
|
vtkIndent |
indent |
|
) |
[virtual] |
|
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkDataSetToPolyDataFilter. |
virtual void vtkDataSetSurfaceFilter::SetUseStrips |
( |
int |
|
) |
[virtual] |
|
|
When input is structured data, this flag will generate faces with triangle strips. This should render faster and use less memory, but no cell data is copied. By default, UseStrips is Off. |
virtual int vtkDataSetSurfaceFilter::GetUseStrips |
( |
|
) |
[virtual] |
|
|
When input is structured data, this flag will generate faces with triangle strips. This should render faster and use less memory, but no cell data is copied. By default, UseStrips is Off. |
virtual void vtkDataSetSurfaceFilter::UseStripsOn |
( |
|
) |
[virtual] |
|
|
When input is structured data, this flag will generate faces with triangle strips. This should render faster and use less memory, but no cell data is copied. By default, UseStrips is Off. |
virtual void vtkDataSetSurfaceFilter::UseStripsOff |
( |
|
) |
[virtual] |
|
|
When input is structured data, this flag will generate faces with triangle strips. This should render faster and use less memory, but no cell data is copied. By default, UseStrips is Off. |
void vtkDataSetSurfaceFilter::ComputeInputUpdateExtents |
( |
vtkDataObject * |
output |
) |
[protected, virtual] |
|
void vtkDataSetSurfaceFilter::Execute |
( |
|
) |
[protected, virtual] |
|
|
This method is the old style execute method
Reimplemented from vtkSource. |
void vtkDataSetSurfaceFilter::StructuredExecute |
( |
vtkDataSet * |
input, |
|
|
int * |
ext |
|
) |
[protected] |
|
void vtkDataSetSurfaceFilter::UnstructuredGridExecute |
( |
|
) |
[protected] |
|
void vtkDataSetSurfaceFilter::DataSetExecute |
( |
|
) |
[protected] |
|
void vtkDataSetSurfaceFilter::ExecuteInformation |
( |
|
) |
[protected, virtual] |
|
void vtkDataSetSurfaceFilter::ExecuteFaceStrips |
( |
vtkDataSet * |
input, |
|
|
int |
maxFlag, |
|
|
int * |
ext, |
|
|
int |
aAxis, |
|
|
int |
bAxis, |
|
|
int |
cAxis |
|
) |
[protected] |
|
void vtkDataSetSurfaceFilter::ExecuteFaceQuads |
( |
vtkDataSet * |
input, |
|
|
int |
maxFlag, |
|
|
int * |
ext, |
|
|
int |
aAxis, |
|
|
int |
bAxis, |
|
|
int |
cAxis |
|
) |
[protected] |
|
void vtkDataSetSurfaceFilter::InitializeQuadHash |
( |
vtkIdType |
numPoints |
) |
[protected] |
|
void vtkDataSetSurfaceFilter::DeleteQuadHash |
( |
|
) |
[protected] |
|
void vtkDataSetSurfaceFilter::InitQuadHashTraversal |
( |
|
) |
[protected] |
|
vtkFastGeomQuad* vtkDataSetSurfaceFilter::GetNextVisibleQuadFromHash |
( |
|
) |
[protected] |
|
void vtkDataSetSurfaceFilter::InitFastGeomQuadAllocation |
( |
int |
numberOfCells |
) |
[protected] |
|
void vtkDataSetSurfaceFilter::DeleteAllFastGeomQuads |
( |
|
) |
[protected] |
|
Member Data Documentation
The documentation for this class was generated from the following file: