|
ParaView
|
helper class to build a SIL i.e. a directed graph used by reader producing composite datasets to describes the relationships among the blocks. More...
#include <vtkSILBuilder.h>


Public Member Functions | |
| virtual const char * | GetClassName () |
| virtual int | IsA (const char *type) |
| void | PrintSelf (ostream &os, vtkIndent indent) |
| void | Initialize () |
| void | SetSIL (vtkMutableDirectedGraph *) |
| virtual vtkMutableDirectedGraph * | GetSIL () |
| vtkIdType | AddVertex (const char *name) |
| vtkIdType | AddChildEdge (vtkIdType parent, vtkIdType child) |
| vtkIdType | AddCrossEdge (vtkIdType src, vtkIdType dst) |
| virtual vtkIdType | GetRootVertex () |
Static Public Member Functions | |
| static vtkSILBuilder * | New () |
| static int | IsTypeOf (const char *type) |
| static vtkSILBuilder * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
| vtkSILBuilder () | |
| ~vtkSILBuilder () | |
Protected Attributes | |
| vtkStringArray * | NamesArray |
| vtkUnsignedCharArray * | CrossEdgesArray |
| vtkMutableDirectedGraph * | SIL |
| vtkIdType | RootVertex |
helper class to build a SIL i.e. a directed graph used by reader producing composite datasets to describes the relationships among the blocks.
vtkSILBuilder is a helper class to build a SIL i.e. a directed graph used by reader producing composite datasets to describes the relationships among the blocks. Refer to http://www.paraview.org/Wiki/Block_Hierarchy_Meta_Data for details.
Definition at line 35 of file vtkSILBuilder.h.
| vtkSILBuilder::vtkSILBuilder | ( | ) | [protected] |
| vtkSILBuilder::~vtkSILBuilder | ( | ) | [protected] |
| static vtkSILBuilder* vtkSILBuilder::New | ( | ) | [static] |
Reimplemented from vtkObject.
| virtual const char* vtkSILBuilder::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkObject.
| static vtkSILBuilder* vtkSILBuilder::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkObject.
| void vtkSILBuilder::PrintSelf | ( | ostream & | os, |
| vtkIndent | indent | ||
| ) | [virtual] |
Reimplemented from vtkObject.
| void vtkSILBuilder::SetSIL | ( | vtkMutableDirectedGraph * | ) |
Get/Set the graph to populate.
| virtual vtkMutableDirectedGraph* vtkSILBuilder::GetSIL | ( | ) | [virtual] |
Get/Set the graph to populate.
| void vtkSILBuilder::Initialize | ( | ) |
Initializes the data-structures.
| vtkIdType vtkSILBuilder::AddVertex | ( | const char * | name | ) |
Add vertex, child-edge or cross-edge to the graph.
Add vertex, child-edge or cross-edge to the graph.
Add vertex, child-edge or cross-edge to the graph.
| virtual vtkIdType vtkSILBuilder::GetRootVertex | ( | ) | [virtual] |
Returns the vertex id for the root vertex.
vtkStringArray* vtkSILBuilder::NamesArray [protected] |
Definition at line 68 of file vtkSILBuilder.h.
vtkUnsignedCharArray* vtkSILBuilder::CrossEdgesArray [protected] |
Definition at line 69 of file vtkSILBuilder.h.
vtkMutableDirectedGraph* vtkSILBuilder::SIL [protected] |
Definition at line 70 of file vtkSILBuilder.h.
vtkIdType vtkSILBuilder::RootVertex [protected] |
Definition at line 72 of file vtkSILBuilder.h.
1.7.5.1