VTK
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes
vtkUnstructuredGridGeometryFilter Class Reference

extract geometry from an unstructured grid More...

#include <vtkUnstructuredGridGeometryFilter.h>

Inheritance diagram for vtkUnstructuredGridGeometryFilter:
Inheritance graph
[legend]
Collaboration diagram for vtkUnstructuredGridGeometryFilter:
Collaboration graph
[legend]

List of all members.

Public Types

typedef
vtkUnstructuredGridAlgorithm 
Superclass

Public Member Functions

virtual int IsA (const char *type)
vtkUnstructuredGridGeometryFilterNewInstance () const
void PrintSelf (ostream &os, vtkIndent indent)
void CreateDefaultLocator ()
unsigned long GetMTime ()
virtual void SetPointClipping (int)
virtual int GetPointClipping ()
virtual void PointClippingOn ()
virtual void PointClippingOff ()
virtual void SetCellClipping (int)
virtual int GetCellClipping ()
virtual void CellClippingOn ()
virtual void CellClippingOff ()
virtual void SetExtentClipping (int)
virtual int GetExtentClipping ()
virtual void ExtentClippingOn ()
virtual void ExtentClippingOff ()
virtual void SetPointMinimum (vtkIdType)
virtual vtkIdType GetPointMinimum ()
virtual void SetPointMaximum (vtkIdType)
virtual vtkIdType GetPointMaximum ()
virtual void SetCellMinimum (vtkIdType)
virtual vtkIdType GetCellMinimum ()
virtual void SetCellMaximum (vtkIdType)
virtual vtkIdType GetCellMaximum ()
void SetExtent (double xMin, double xMax, double yMin, double yMax, double zMin, double zMax)
void SetExtent (double extent[6])
doubleGetExtent ()
virtual void SetMerging (int)
virtual int GetMerging ()
virtual void MergingOn ()
virtual void MergingOff ()
virtual void SetPassThroughCellIds (int)
virtual int GetPassThroughCellIds ()
virtual void PassThroughCellIdsOn ()
virtual void PassThroughCellIdsOff ()
virtual void SetPassThroughPointIds (int)
virtual int GetPassThroughPointIds ()
virtual void PassThroughPointIdsOn ()
virtual void PassThroughPointIdsOff ()
virtual void SetOriginalCellIdsName (const char *)
virtual const char * GetOriginalCellIdsName ()
virtual void SetOriginalPointIdsName (const char *)
virtual const char * GetOriginalPointIdsName ()
void SetLocator (vtkIncrementalPointLocator *locator)
virtual
vtkIncrementalPointLocator
GetLocator ()

Static Public Member Functions

static
vtkUnstructuredGridGeometryFilter
New ()
static int IsTypeOf (const char *type)
static
vtkUnstructuredGridGeometryFilter
SafeDownCast (vtkObjectBase *o)

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 vtkUnstructuredGridGeometryFilter ()
 ~vtkUnstructuredGridGeometryFilter ()
virtual int RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual int FillInputPortInformation (int port, vtkInformation *info)
int RequestUpdateExtent (vtkInformation *, vtkInformationVector **, vtkInformationVector *)

Protected Attributes

vtkIdType PointMaximum
vtkIdType PointMinimum
vtkIdType CellMinimum
vtkIdType CellMaximum
double Extent [6]
int PointClipping
int CellClipping
int ExtentClipping
int PassThroughCellIds
int PassThroughPointIds
char * OriginalCellIdsName
char * OriginalPointIdsName
int Merging
vtkIncrementalPointLocatorLocator
vtkHashTableOfSurfels * HashTable

Detailed Description

extract geometry from an unstructured grid

vtkUnstructuredGridGeometryFilter is a filter that extracts geometry (and associated data) from an unstructured grid. It differs from vtkGeometryFilter by not tessellating higher order faces: 2D faces of quadratic 3D cells will be quadratic. A quadratic edge is extracted as a quadratic edge. For that purpose, the output of this filter is an unstructured grid, not a polydata. Also, the face of a voxel is a pixel, not a quad. Geometry is obtained as follows: all 0D, 1D, and 2D cells are extracted. All 2D faces that are used by only one 3D cell (i.e., boundary faces) are extracted. It also is possible to specify conditions on point ids, cell ids, and on bounding box (referred to as "Extent") to control the extraction process.

Warning:
When vtkUnstructuredGridGeometryFilter extracts cells (or boundaries of cells) it will (by default) merge duplicate vertices. This may cause problems in some cases. Turn merging off to prevent this from occurring.
See also:
vtkGeometryFilter
Tests:
vtkUnstructuredGridGeometryFilter (Tests)

Definition at line 52 of file vtkUnstructuredGridGeometryFilter.h.


Member Typedef Documentation

Reimplemented from vtkUnstructuredGridAlgorithm.

Definition at line 56 of file vtkUnstructuredGridGeometryFilter.h.


Constructor & Destructor Documentation


Member Function Documentation

Create an object with Debug turned off, modified time initialized to zero, and reference counting on.

Reimplemented from vtkUnstructuredGridAlgorithm.

static int vtkUnstructuredGridGeometryFilter::IsTypeOf ( const char *  name) [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 vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkUnstructuredGridAlgorithm.

virtual int vtkUnstructuredGridGeometryFilter::IsA ( const char *  name) [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 vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkUnstructuredGridAlgorithm.

Reimplemented from vtkUnstructuredGridAlgorithm.

Reimplemented from vtkUnstructuredGridAlgorithm.

Reimplemented from vtkUnstructuredGridAlgorithm.

void vtkUnstructuredGridGeometryFilter::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 vtkUnstructuredGridAlgorithm.

Turn on/off selection of geometry by point id.

Turn on/off selection of geometry by point id.

Turn on/off selection of geometry by point id.

Turn on/off selection of geometry by point id.

Turn on/off selection of geometry by cell id.

Turn on/off selection of geometry by cell id.

Turn on/off selection of geometry by cell id.

Turn on/off selection of geometry by cell id.

Turn on/off selection of geometry via bounding box.

Turn on/off selection of geometry via bounding box.

Turn on/off selection of geometry via bounding box.

Turn on/off selection of geometry via bounding box.

Specify the minimum point id for point id selection.

Specify the minimum point id for point id selection.

Specify the maximum point id for point id selection.

Specify the maximum point id for point id selection.

Specify the minimum cell id for point id selection.

Specify the minimum cell id for point id selection.

Specify the maximum cell id for point id selection.

Specify the maximum cell id for point id selection.

void vtkUnstructuredGridGeometryFilter::SetExtent ( double  xMin,
double  xMax,
double  yMin,
double  yMax,
double  zMin,
double  zMax 
)

Specify a (xmin,xmax, ymin,ymax, zmin,zmax) bounding box to clip data.

Set / get a (xmin,xmax, ymin,ymax, zmin,zmax) bounding box to clip data.

Set / get a (xmin,xmax, ymin,ymax, zmin,zmax) bounding box to clip data.

Definition at line 115 of file vtkUnstructuredGridGeometryFilter.h.

virtual void vtkUnstructuredGridGeometryFilter::SetMerging ( int  ) [virtual]

Turn on/off merging of coincident points. Note that is merging is on, points with different point attributes (e.g., normals) are merged, which may cause rendering artifacts.

Turn on/off merging of coincident points. Note that is merging is on, points with different point attributes (e.g., normals) are merged, which may cause rendering artifacts.

Turn on/off merging of coincident points. Note that is merging is on, points with different point attributes (e.g., normals) are merged, which may cause rendering artifacts.

Turn on/off merging of coincident points. Note that is merging is on, points with different point attributes (e.g., normals) are merged, which may cause rendering artifacts.

If on, the output polygonal dataset will have a celldata array that holds the cell index of the original 3D cell that produced each output cell. This is useful for cell picking. The default is off to conserve memory. Note that PassThroughCellIds will be ignored if UseStrips is on, since in that case each tringle strip can represent more than on of the input cells.

If on, the output polygonal dataset will have a celldata array that holds the cell index of the original 3D cell that produced each output cell. This is useful for cell picking. The default is off to conserve memory. Note that PassThroughCellIds will be ignored if UseStrips is on, since in that case each tringle strip can represent more than on of the input cells.

If on, the output polygonal dataset will have a celldata array that holds the cell index of the original 3D cell that produced each output cell. This is useful for cell picking. The default is off to conserve memory. Note that PassThroughCellIds will be ignored if UseStrips is on, since in that case each tringle strip can represent more than on of the input cells.

If on, the output polygonal dataset will have a celldata array that holds the cell index of the original 3D cell that produced each output cell. This is useful for cell picking. The default is off to conserve memory. Note that PassThroughCellIds will be ignored if UseStrips is on, since in that case each tringle strip can represent more than on of the input cells.

If on, the output polygonal dataset will have a celldata array that holds the cell index of the original 3D cell that produced each output cell. This is useful for cell picking. The default is off to conserve memory. Note that PassThroughCellIds will be ignored if UseStrips is on, since in that case each tringle strip can represent more than on of the input cells.

If on, the output polygonal dataset will have a celldata array that holds the cell index of the original 3D cell that produced each output cell. This is useful for cell picking. The default is off to conserve memory. Note that PassThroughCellIds will be ignored if UseStrips is on, since in that case each tringle strip can represent more than on of the input cells.

If on, the output polygonal dataset will have a celldata array that holds the cell index of the original 3D cell that produced each output cell. This is useful for cell picking. The default is off to conserve memory. Note that PassThroughCellIds will be ignored if UseStrips is on, since in that case each tringle strip can represent more than on of the input cells.

If on, the output polygonal dataset will have a celldata array that holds the cell index of the original 3D cell that produced each output cell. This is useful for cell picking. The default is off to conserve memory. Note that PassThroughCellIds will be ignored if UseStrips is on, since in that case each tringle strip can represent more than on of the input cells.

virtual void vtkUnstructuredGridGeometryFilter::SetOriginalCellIdsName ( const char *  ) [virtual]

If PassThroughCellIds or PassThroughPointIds is on, then these ivars control the name given to the field in which the ids are written into. If set to NULL, then vtkOriginalCellIds or vtkOriginalPointIds (the default) is used, respectively.

virtual const char* vtkUnstructuredGridGeometryFilter::GetOriginalCellIdsName ( ) [inline, virtual]

If PassThroughCellIds or PassThroughPointIds is on, then these ivars control the name given to the field in which the ids are written into. If set to NULL, then vtkOriginalCellIds or vtkOriginalPointIds (the default) is used, respectively.

Definition at line 148 of file vtkUnstructuredGridGeometryFilter.h.

virtual void vtkUnstructuredGridGeometryFilter::SetOriginalPointIdsName ( const char *  ) [virtual]

If PassThroughCellIds or PassThroughPointIds is on, then these ivars control the name given to the field in which the ids are written into. If set to NULL, then vtkOriginalCellIds or vtkOriginalPointIds (the default) is used, respectively.

virtual const char* vtkUnstructuredGridGeometryFilter::GetOriginalPointIdsName ( ) [inline, virtual]

If PassThroughCellIds or PassThroughPointIds is on, then these ivars control the name given to the field in which the ids are written into. If set to NULL, then vtkOriginalCellIds or vtkOriginalPointIds (the default) is used, respectively.

Definition at line 153 of file vtkUnstructuredGridGeometryFilter.h.

Set / get a spatial locator for merging points. By default an instance of vtkMergePoints is used.

Set / get a spatial locator for merging points. By default an instance of vtkMergePoints is used.

Create default locator. Used to create one when none is specified.

unsigned long vtkUnstructuredGridGeometryFilter::GetMTime ( ) [virtual]

Return the MTime also considering the locator.

Reimplemented from vtkObject.

virtual int vtkUnstructuredGridGeometryFilter::RequestData ( vtkInformation request,
vtkInformationVector **  inputVector,
vtkInformationVector outputVector 
) [protected, virtual]

This is called by the superclass. This is the method you should override.

Reimplemented from vtkUnstructuredGridAlgorithm.

virtual int vtkUnstructuredGridGeometryFilter::FillInputPortInformation ( int  port,
vtkInformation info 
) [protected, virtual]

Fill the input port information objects for this algorithm. This is invoked by the first call to GetInputPortInformation for each port so subclasses can specify what they can handle.

Reimplemented from vtkUnstructuredGridAlgorithm.

This is called by the superclass. This is the method you should override.

Reimplemented from vtkUnstructuredGridAlgorithm.


Member Data Documentation

Definition at line 181 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 182 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 183 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 184 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 185 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 186 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 187 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 188 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 190 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 191 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 192 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 193 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 195 of file vtkUnstructuredGridGeometryFilter.h.

Definition at line 196 of file vtkUnstructuredGridGeometryFilter.h.

vtkHashTableOfSurfels* vtkUnstructuredGridGeometryFilter::HashTable [protected]

Definition at line 198 of file vtkUnstructuredGridGeometryFilter.h.


The documentation for this class was generated from the following file: