Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

vtkSpatialRepresentationFilter Class Reference

generate polygonal model of spatial search object (i.e., a vtkLocator). More...

#include <vtkSpatialRepresentationFilter.h>

Inheritance diagram for vtkSpatialRepresentationFilter:

Inheritance graph
[legend]
Collaboration diagram for vtkSpatialRepresentationFilter:

Collaboration graph
[legend]
List of all members.

Public Methods

virtual const char * GetClassName ()
virtual int IsA (const char *type)
void PrintSelf (ostream &os, vtkIndent indent)
virtual void SetSpatialRepresentation (vtkLocator *)
virtual vtkLocatorGetSpatialRepresentation ()
virtual int GetLevel ()
vtkPolyDataGetOutput (int level)
vtkPolyDataGetOutput ()
void ResetOutput ()
virtual void SetInput (vtkDataSet *input)
virtual void SetInput (vtkImageData *cache)
vtkDataSetGetInput ()

Static Public Methods

vtkSpatialRepresentationFilter * New ()
int IsTypeOf (const char *type)
vtkSpatialRepresentationFilter * SafeDownCast (vtkObject *o)

Protected Methods

 vtkSpatialRepresentationFilter ()
 ~vtkSpatialRepresentationFilter ()
 vtkSpatialRepresentationFilter (const vtkSpatialRepresentationFilter &)
void operator= (const vtkSpatialRepresentationFilter &)
void Execute ()
void GenerateOutput ()

Protected Attributes

int Level
int TerminalNodesRequested
vtkLocatorSpatialRepresentation

Detailed Description

generate polygonal model of spatial search object (i.e., a vtkLocator).

Date:
2000/12/10 20:08:52
Revision:
1.20

vtkSpatialRepresentationFilter generates an polygonal representation of a spatial search (vtkLocator) object. The representation varies depending upon the nature of the spatial search object. For example, the representation for vtkOBBTree is a collection of oriented bounding boxes. Ths input to this filter is a dataset of any type, and the output is polygonal data. You must also specify the spatial search object to use.

Generally spatial search objects are used for collision detection and other geometric operations, but in this filter one or more levels of spatial searchers can be generated to form a geometric approximation to the input data. This is a form of data simplification, generally used to accelerate the rendering process. Or, this filter can be used as a debugging/ visualization aid for spatial search objects.

This filter can generate one or more output vtkPolyData corresponding to different levels in the spatial search tree. The output data is retrieved using the GetOutput(id) method, where id ranges from 0 (root level) to Level. Note that the output for level "id" is not computed unless a GetOutput(id) method is issued. Thus, if you desire three levels of output (say 2,4,7), you would have to invoke GetOutput(2), GetOutput(4), and GetOutput(7). (Also note that the Level ivar is computed automatically depending on the size and nature of the input data.) There is also another GetOutput() method that takes no parameters. This method returns the leafs of the spatial search tree, which may be at different levels.

Warning:
You can specify the number of levels of to generate with the MaxLevels ivar. However, when the spatial search tree is built, this number of levels may not actually be generated. The actual number available can be found in the Levels ivar. Note that the value of Levels may change after filter execution.
See also:
vtkLocator vtkPointLocator vtkCellLocator vtkOBBTree
Examples:
vtkSpatialRepresentationFilter (examples)

Definition at line 94 of file vtkSpatialRepresentationFilter.h.


Constructor & Destructor Documentation

vtkSpatialRepresentationFilter::vtkSpatialRepresentationFilter   [protected]
 

vtkSpatialRepresentationFilter::~vtkSpatialRepresentationFilter   [protected]
 

vtkSpatialRepresentationFilter::vtkSpatialRepresentationFilter const vtkSpatialRepresentationFilter &    [inline, protected]
 

Definition at line 128 of file vtkSpatialRepresentationFilter.h.


Member Function Documentation

vtkSpatialRepresentationFilter* vtkSpatialRepresentationFilter::New   [static]
 

Instantiate object with no start, end, or progress methods.

Reimplemented from vtkPolyDataSource.

virtual const char* vtkSpatialRepresentationFilter::GetClassName   [virtual]
 

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 vtkPolyDataSource.

int vtkSpatialRepresentationFilter::IsTypeOf const char *    type [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 vtkPolyDataSource.

virtual int vtkSpatialRepresentationFilter::IsA const char *    type [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 vtkPolyDataSource.

vtkSpatialRepresentationFilter* vtkSpatialRepresentationFilter::SafeDownCast vtkObject   o [static]
 

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 vtkPolyDataSource.

void vtkSpatialRepresentationFilter::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 vtkSource.

virtual void vtkSpatialRepresentationFilter::SetSpatialRepresentation vtkLocator   [virtual]
 

Set/Get the locator that will be used to generate the representation.

virtual vtkLocator* vtkSpatialRepresentationFilter::GetSpatialRepresentation   [virtual]
 

virtual int vtkSpatialRepresentationFilter::GetLevel   [virtual]
 

Get the maximum number of outputs actually available.

vtkPolyData* vtkSpatialRepresentationFilter::GetOutput int    level
 

A special form of the GetOutput() method that returns multiple outputs.

Reimplemented from vtkPolyDataSource.

vtkPolyData* vtkSpatialRepresentationFilter::GetOutput  
 

Output of terminal nodes/leaves.

Reimplemented from vtkPolyDataSource.

void vtkSpatialRepresentationFilter::ResetOutput  
 

Reset requested output levels

virtual void vtkSpatialRepresentationFilter::SetInput vtkDataSet   input [virtual]
 

Set / get the input data or filter.

virtual void vtkSpatialRepresentationFilter::SetInput vtkImageData   cache [inline, virtual]
 

Definition at line 120 of file vtkSpatialRepresentationFilter.h.

vtkDataSet* vtkSpatialRepresentationFilter::GetInput  
 

void vtkSpatialRepresentationFilter::operator= const vtkSpatialRepresentationFilter &    [inline, protected]
 

Definition at line 129 of file vtkSpatialRepresentationFilter.h.

void vtkSpatialRepresentationFilter::Execute   [protected, virtual]
 

Reimplemented from vtkSource.

void vtkSpatialRepresentationFilter::GenerateOutput   [protected]
 


Member Data Documentation

int vtkSpatialRepresentationFilter::Level [protected]
 

Definition at line 134 of file vtkSpatialRepresentationFilter.h.

int vtkSpatialRepresentationFilter::TerminalNodesRequested [protected]
 

Definition at line 135 of file vtkSpatialRepresentationFilter.h.

vtkLocator* vtkSpatialRepresentationFilter::SpatialRepresentation [protected]
 

Definition at line 137 of file vtkSpatialRepresentationFilter.h.


The documentation for this class was generated from the following file:
Generated on Wed Nov 21 13:00:26 2001 for VTK by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001