#include <vtkExtractBlock.h>
vtkExtractBlock is a filter that extracts blocks from a multiblock dataset. Each node in the multi-block tree is identified by an index
. The index can be obtained by performing a preorder traversal of the tree (including empty nodes). eg. A(B (D, E), C(F, G)). Inorder traversal yields: A, B, D, E, C, F, G Index of A is 0, while index of C is 4.
Definition at line 37 of file vtkExtractBlock.h.
Public Types | |
typedef vtkMultiBlockDataSetAlgorithm | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | AddIndex (unsigned int index) |
void | RemoveIndex (unsigned int index) |
void | RemoveAllIndices () |
virtual void | SetPruneOutput (int) |
virtual int | GetPruneOutput () |
virtual void | PruneOutputOn () |
virtual void | PruneOutputOff () |
Static Public Member Functions | |
static vtkExtractBlock * | New () |
static int | IsTypeOf (const char *type) |
static vtkExtractBlock * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkExtractBlock () | |
~vtkExtractBlock () | |
virtual int | RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
Implementation of the algorithm. | |
void | CopySubTree (vtkCompositeDataIterator *loc, vtkMultiBlockDataSet *output, vtkMultiBlockDataSet *input) |
Extract subtree. | |
bool | Prune (vtkMultiBlockDataSet *mblock) |
bool | Prune (vtkMultiPieceDataSet *mblock) |
bool | Prune (vtkDataObject *mblock) |
Static Protected Member Functions | |
static vtkInformationIntegerKey * | DONT_PRUNE () |
Protected Attributes | |
int | PruneOutput |
vtkExtractBlock::vtkExtractBlock | ( | ) | [protected] |
vtkExtractBlock::~vtkExtractBlock | ( | ) | [protected] |
static vtkExtractBlock* vtkExtractBlock::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
virtual const char* vtkExtractBlock::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkMultiBlockDataSetAlgorithm.
static int vtkExtractBlock::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 vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
virtual int vtkExtractBlock::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 vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
static vtkExtractBlock* vtkExtractBlock::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkMultiBlockDataSetAlgorithm.
void vtkExtractBlock::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 vtkMultiBlockDataSetAlgorithm.
void vtkExtractBlock::AddIndex | ( | unsigned int | index | ) |
Select the block indices to extract. Each node in the multi-block tree is identified by an index
. The index can be obtained by performing a preorder traversal of the tree (including empty nodes). eg. A(B (D, E), C(F, G)). Inorder traversal yields: A, B, D, E, C, F, G Index of A is 0, while index of C is 4.
void vtkExtractBlock::RemoveIndex | ( | unsigned int | index | ) |
Select the block indices to extract. Each node in the multi-block tree is identified by an index
. The index can be obtained by performing a preorder traversal of the tree (including empty nodes). eg. A(B (D, E), C(F, G)). Inorder traversal yields: A, B, D, E, C, F, G Index of A is 0, while index of C is 4.
void vtkExtractBlock::RemoveAllIndices | ( | ) |
Select the block indices to extract. Each node in the multi-block tree is identified by an index
. The index can be obtained by performing a preorder traversal of the tree (including empty nodes). eg. A(B (D, E), C(F, G)). Inorder traversal yields: A, B, D, E, C, F, G Index of A is 0, while index of C is 4.
virtual void vtkExtractBlock::SetPruneOutput | ( | int | ) | [virtual] |
When set, the output mutliblock dataset will be pruned to remove empty nodes. On by default.
virtual int vtkExtractBlock::GetPruneOutput | ( | ) | [virtual] |
When set, the output mutliblock dataset will be pruned to remove empty nodes. On by default.
virtual void vtkExtractBlock::PruneOutputOn | ( | ) | [virtual] |
When set, the output mutliblock dataset will be pruned to remove empty nodes. On by default.
virtual void vtkExtractBlock::PruneOutputOff | ( | ) | [virtual] |
When set, the output mutliblock dataset will be pruned to remove empty nodes. On by default.
static vtkInformationIntegerKey* vtkExtractBlock::DONT_PRUNE | ( | ) | [static, protected] |
Internal key, used to avoid pruning of a branch.
virtual int vtkExtractBlock::RequestData | ( | vtkInformation * | , | |
vtkInformationVector ** | , | |||
vtkInformationVector * | ||||
) | [protected, virtual] |
void vtkExtractBlock::CopySubTree | ( | vtkCompositeDataIterator * | loc, | |
vtkMultiBlockDataSet * | output, | |||
vtkMultiBlockDataSet * | input | |||
) | [protected] |
Extract subtree.
bool vtkExtractBlock::Prune | ( | vtkMultiBlockDataSet * | mblock | ) | [protected] |
bool vtkExtractBlock::Prune | ( | vtkMultiPieceDataSet * | mblock | ) | [protected] |
bool vtkExtractBlock::Prune | ( | vtkDataObject * | mblock | ) | [protected] |
int vtkExtractBlock::PruneOutput [protected] |
Definition at line 84 of file vtkExtractBlock.h.