VTK
|
select neighbor cells up to a distance More...
#include <vtkCellDistanceSelector.h>
select neighbor cells up to a distance
Grows a selection, selecting neighbor cells, up to a user defined topological distance
This filter grows an input selection by iteratively selecting neighbor cells (a neighbor cell is a cell that shares a vertex/edge/face), up to a given topological distance to the selected neighborhood (number of times we add neighbor cells). This filter takes a vtkSelection and a vtkCompositeDataSet as inputs. It outputs a vtkSelection identifying all the selected cells.
Definition at line 52 of file vtkCellDistanceSelector.h.
Reimplemented from vtkSelectionAlgorithm.
Definition at line 55 of file vtkCellDistanceSelector.h.
enumeration values to specify input port types
Definition at line 63 of file vtkCellDistanceSelector.h.
vtkCellDistanceSelector::vtkCellDistanceSelector | ( | ) | [protected] |
virtual vtkCellDistanceSelector::~vtkCellDistanceSelector | ( | ) | [protected, virtual] |
static int vtkCellDistanceSelector::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 vtkSelectionAlgorithm.
virtual int vtkCellDistanceSelector::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 vtkSelectionAlgorithm.
static vtkCellDistanceSelector* vtkCellDistanceSelector::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkSelectionAlgorithm.
virtual vtkObjectBase* vtkCellDistanceSelector::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkSelectionAlgorithm.
Reimplemented from vtkSelectionAlgorithm.
virtual void vtkCellDistanceSelector::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 vtkSelectionAlgorithm.
static vtkCellDistanceSelector* vtkCellDistanceSelector::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkSelectionAlgorithm.
void vtkCellDistanceSelector::SetInputMeshConnection | ( | vtkAlgorithmOutput * | in | ) | [inline] |
A convenience method to set the data object input connection to the producer output
Definition at line 73 of file vtkCellDistanceSelector.h.
void vtkCellDistanceSelector::SetInputMesh | ( | vtkDataObject * | obj | ) | [inline] |
A convenience method to set the input data object
Definition at line 79 of file vtkCellDistanceSelector.h.
void vtkCellDistanceSelector::SetInputSelectionConnection | ( | vtkAlgorithmOutput * | in | ) | [inline] |
A convenience method to set the selection input connection to the producer output
Definition at line 86 of file vtkCellDistanceSelector.h.
void vtkCellDistanceSelector::SetInputSelection | ( | vtkSelection * | obj | ) | [inline] |
A convenience method to set the input selection
Definition at line 92 of file vtkCellDistanceSelector.h.
virtual void vtkCellDistanceSelector::SetDistance | ( | int | ) | [virtual] |
Tells how far (in term of topological distance) away from seed cells to expand the selection
virtual int vtkCellDistanceSelector::GetDistance | ( | ) | [virtual] |
Tells how far (in term of topological distance) away from seed cells to expand the selection
virtual void vtkCellDistanceSelector::SetIncludeSeed | ( | int | ) | [virtual] |
If set, seed cells passed with SetSeedCells will be included in the final selection
virtual int vtkCellDistanceSelector::GetIncludeSeed | ( | ) | [virtual] |
If set, seed cells passed with SetSeedCells will be included in the final selection
virtual void vtkCellDistanceSelector::IncludeSeedOn | ( | ) | [virtual] |
If set, seed cells passed with SetSeedCells will be included in the final selection
virtual void vtkCellDistanceSelector::IncludeSeedOff | ( | ) | [virtual] |
If set, seed cells passed with SetSeedCells will be included in the final selection
virtual void vtkCellDistanceSelector::SetAddIntermediate | ( | int | ) | [virtual] |
If set, intermediate cells (between seed cells and the selection boundary) will be included in the final selection
virtual int vtkCellDistanceSelector::GetAddIntermediate | ( | ) | [virtual] |
If set, intermediate cells (between seed cells and the selection boundary) will be included in the final selection
virtual void vtkCellDistanceSelector::AddIntermediateOn | ( | ) | [virtual] |
If set, intermediate cells (between seed cells and the selection boundary) will be included in the final selection
virtual void vtkCellDistanceSelector::AddIntermediateOff | ( | ) | [virtual] |
If set, intermediate cells (between seed cells and the selection boundary) will be included in the final selection
void vtkCellDistanceSelector::AddSelectionNode | ( | vtkSelection * | output, |
vtkSmartPointer< vtkDataArray > | outIndices, | ||
int | partNumber, | ||
int | d | ||
) | [protected] |
virtual int vtkCellDistanceSelector::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 vtkSelectionAlgorithm.
virtual int vtkCellDistanceSelector::RequestData | ( | vtkInformation * | request, |
vtkInformationVector ** | inputVector, | ||
vtkInformationVector * | outputVector | ||
) | [protected, virtual] |
This is called by the superclass. This is the method you should override.
Reimplemented from vtkSelectionAlgorithm.
int vtkCellDistanceSelector::Distance [protected] |
Tological radius from seed cells to be used to select cells Default: 1
Definition at line 130 of file vtkCellDistanceSelector.h.
int vtkCellDistanceSelector::IncludeSeed [protected] |
Decide whether seed cells are included in selection Default: 1
Definition at line 133 of file vtkCellDistanceSelector.h.
int vtkCellDistanceSelector::AddIntermediate [protected] |
Decide whether at distance between 1 and Distance-1 are included in selection Default: 1
Definition at line 137 of file vtkCellDistanceSelector.h.