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

extract subset of unstructured grid geometry More...

#include <vtkExtractUnstructuredGrid.h>

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

List of all members.

Public Types

typedef
vtkUnstructuredGridAlgorithm 
Superclass

Public Member Functions

virtual int IsA (const char *type)
vtkExtractUnstructuredGridNewInstance () 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 ()
void SetLocator (vtkIncrementalPointLocator *locator)
virtual
vtkIncrementalPointLocator
GetLocator ()

Static Public Member Functions

static int IsTypeOf (const char *type)
static vtkExtractUnstructuredGridSafeDownCast (vtkObjectBase *o)
static vtkExtractUnstructuredGridNew ()

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 vtkExtractUnstructuredGrid ()
 ~vtkExtractUnstructuredGrid ()
virtual int RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *)

Protected Attributes

vtkIdType PointMinimum
vtkIdType PointMaximum
vtkIdType CellMinimum
vtkIdType CellMaximum
double Extent [6]
int PointClipping
int CellClipping
int ExtentClipping
int Merging
vtkIncrementalPointLocatorLocator

Detailed Description

extract subset of unstructured grid geometry

vtkExtractUnstructuredGrid is a general-purpose filter to extract geometry (and associated data) from an unstructured grid dataset. The extraction process is controlled by specifying a range of point ids, cell ids, or a bounding box (referred to as "Extent"). Those cells laying within these regions are sent to the output. The user has the choice of merging coincident points (Merging is on) or using the original point set (Merging is off).

Warning:
If merging is off, the input points are copied through to the output. This means unused points may be present in the output data. If merging is on, then coincident points with different point attribute values are merged.
See also:
vtkImageDataGeometryFilter vtkStructuredGridGeometryFilter vtkRectilinearGridGeometryFilter vtkExtractGeometry vtkExtractVOI
Examples:
vtkExtractUnstructuredGrid (Examples)
Tests:
vtkExtractUnstructuredGrid (Tests)

Definition at line 52 of file vtkExtractUnstructuredGrid.h.


Member Typedef Documentation

Reimplemented from vtkUnstructuredGridAlgorithm.

Definition at line 55 of file vtkExtractUnstructuredGrid.h.


Constructor & Destructor Documentation

Definition at line 144 of file vtkExtractUnstructuredGrid.h.


Member Function Documentation

static int vtkExtractUnstructuredGrid::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 vtkExtractUnstructuredGrid::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.

virtual vtkObjectBase* vtkExtractUnstructuredGrid::NewInstanceInternal ( ) const [protected, virtual]

Reimplemented from vtkUnstructuredGridAlgorithm.

Reimplemented from vtkUnstructuredGridAlgorithm.

void vtkExtractUnstructuredGrid::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.

Construct with all types of clipping turned off.

Reimplemented from vtkUnstructuredGridAlgorithm.

virtual void vtkExtractUnstructuredGrid::SetPointClipping ( int  ) [virtual]

Turn on/off selection of geometry by point id.

Turn on/off selection of geometry by point id.

virtual void vtkExtractUnstructuredGrid::PointClippingOn ( ) [virtual]

Turn on/off selection of geometry by point id.

Turn on/off selection of geometry by point id.

virtual void vtkExtractUnstructuredGrid::SetCellClipping ( int  ) [virtual]

Turn on/off selection of geometry by cell id.

Turn on/off selection of geometry by cell id.

virtual void vtkExtractUnstructuredGrid::CellClippingOn ( ) [virtual]

Turn on/off selection of geometry by cell id.

virtual void vtkExtractUnstructuredGrid::CellClippingOff ( ) [virtual]

Turn on/off selection of geometry by cell id.

virtual void vtkExtractUnstructuredGrid::SetExtentClipping ( int  ) [virtual]

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 vtkExtractUnstructuredGrid::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 117 of file vtkExtractUnstructuredGrid.h.

virtual void vtkExtractUnstructuredGrid::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.

virtual void vtkExtractUnstructuredGrid::MergingOn ( ) [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.

virtual void vtkExtractUnstructuredGrid::MergingOff ( ) [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.

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 vtkExtractUnstructuredGrid::GetMTime ( ) [virtual]

Return the MTime also considering the locator.

Reimplemented from vtkObject.

virtual int vtkExtractUnstructuredGrid::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.


Member Data Documentation

Definition at line 148 of file vtkExtractUnstructuredGrid.h.

Definition at line 149 of file vtkExtractUnstructuredGrid.h.

Definition at line 150 of file vtkExtractUnstructuredGrid.h.

Definition at line 151 of file vtkExtractUnstructuredGrid.h.

Definition at line 152 of file vtkExtractUnstructuredGrid.h.

Definition at line 153 of file vtkExtractUnstructuredGrid.h.

Definition at line 154 of file vtkExtractUnstructuredGrid.h.

Definition at line 155 of file vtkExtractUnstructuredGrid.h.

Definition at line 157 of file vtkExtractUnstructuredGrid.h.

Definition at line 158 of file vtkExtractUnstructuredGrid.h.


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