#include <vtkExtractUnstructuredGrid.h>
Inheritance diagram for vtkExtractUnstructuredGrid:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
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 (int) |
virtual int | GetPointMinimum () |
virtual void | SetPointMaximum (int) |
virtual int | GetPointMaximum () |
virtual void | SetCellMinimum (int) |
virtual int | GetCellMinimum () |
virtual void | SetCellMaximum (int) |
virtual int | GetCellMaximum () |
void | SetExtent (float xMin, float xMax, float yMin, float yMax, float zMin, float zMax) |
void | SetExtent (float *extent) |
float * | GetExtent () |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkExtractUnstructuredGrid * | SafeDownCast (vtkObject *o) |
vtkExtractUnstructuredGrid * | New () |
Protected Methods | |
vtkExtractUnstructuredGrid () | |
~vtkExtractUnstructuredGrid () | |
vtkExtractUnstructuredGrid (const vtkExtractUnstructuredGrid &) | |
void | operator= (const vtkExtractUnstructuredGrid &) |
void | Execute () |
Protected Attributes | |
int | PointMinimum |
int | PointMaximum |
int | CellMinimum |
int | CellMaximum |
float | Extent [6] |
int | PointClipping |
int | CellClipping |
int | ExtentClipping |
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").
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkUnstructuredGridToUnstructuredGridFilter. |
|
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 vtkUnstructuredGridToUnstructuredGridFilter. |
|
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 vtkUnstructuredGridToUnstructuredGridFilter. |
|
Construct with all types of clipping turned off. Reimplemented from vtkUnstructuredGridSource. |
|
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 vtkSource. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkUnstructuredGridToUnstructuredGridFilter. |
|
Turn on/off selection of geometry by cell id. |
|
Specify the maximum cell id for point id selection. |
|
Specify the minimum cell id for point id selection. |
|
Set / get a (xmin,xmax, ymin,ymax, zmin,zmax) bounding box to clip data. |
|
Specify a (xmin,xmax, ymin,ymax, zmin,zmax) bounding box to clip data. |
|
Turn on/off selection of geometry via bounding box. |
|
Turn on/off selection of geometry by point id. |
|
Specify the maximum point id for point id selection. |
|
Specify the minimum point id for point id selection. |