ActiViz .NET  5.8.0
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkGraphHierarchicalBundle Class Reference

vtkGraphHierarchicalBundle - layout graph arcs in bundles More...

Inheritance diagram for Kitware.VTK.vtkGraphHierarchicalBundle:
[legend]
Collaboration diagram for Kitware.VTK.vtkGraphHierarchicalBundle:
[legend]

List of all members.

Public Member Functions

 vtkGraphHierarchicalBundle (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkGraphHierarchicalBundle ()
 Undocumented Block.
virtual void DirectMappingOff ()
 If on, uses direct mapping from tree to graph vertices. If off, both the graph and tree must contain PedigreeId arrays which are used to match graph and tree vertices. Default is off.
virtual void DirectMappingOn ()
 If on, uses direct mapping from tree to graph vertices. If off, both the graph and tree must contain PedigreeId arrays which are used to match graph and tree vertices. Default is off.
virtual int FillInputPortInformation (int port, vtkInformation info)
 Set the input type of the algorithm to vtkGraph.
virtual double GetBundlingStrength ()
 The level of arc bundling in the graph. A strength of 0 creates straight lines, while a strength of 1 forces arcs to pass directly through hierarchy node points. The default value is 0.8.
virtual double GetBundlingStrengthMaxValue ()
 The level of arc bundling in the graph. A strength of 0 creates straight lines, while a strength of 1 forces arcs to pass directly through hierarchy node points. The default value is 0.8.
virtual double GetBundlingStrengthMinValue ()
 The level of arc bundling in the graph. A strength of 0 creates straight lines, while a strength of 1 forces arcs to pass directly through hierarchy node points. The default value is 0.8.
virtual bool GetDirectMapping ()
 If on, uses direct mapping from tree to graph vertices. If off, both the graph and tree must contain PedigreeId arrays which are used to match graph and tree vertices. Default is off.
override int IsA (string type)
 Undocumented Block.
new vtkGraphHierarchicalBundle NewInstance ()
 Undocumented Block.
virtual void SetBundlingStrength (double _arg)
 The level of arc bundling in the graph. A strength of 0 creates straight lines, while a strength of 1 forces arcs to pass directly through hierarchy node points. The default value is 0.8.
virtual void SetDirectMapping (bool _arg)
 If on, uses direct mapping from tree to graph vertices. If off, both the graph and tree must contain PedigreeId arrays which are used to match graph and tree vertices. Default is off.

Static Public Member Functions

static new
vtkGraphHierarchicalBundle 
New ()
 Undocumented Block.
static new int IsTypeOf (string type)
 Undocumented Block.
static new
vtkGraphHierarchicalBundle 
SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkGraphHierarchicalBundle"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "26vtkGraphHierarchicalBundle"
 Automatically generated type registration mechanics.

Protected Member Functions

override void Dispose (bool disposing)
 Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Private Member Functions

static internal IntPtr vtkGraphHierarchicalBundle_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkGraphHierarchicalBundle_DirectMappingOff_01 (HandleRef pThis)
static internal void vtkGraphHierarchicalBundle_DirectMappingOn_02 (HandleRef pThis)
static internal int vtkGraphHierarchicalBundle_FillInputPortInformation_03 (HandleRef pThis, int port, HandleRef info)
static internal double vtkGraphHierarchicalBundle_GetBundlingStrength_04 (HandleRef pThis)
static internal double vtkGraphHierarchicalBundle_GetBundlingStrengthMaxValue_05 (HandleRef pThis)
static internal double vtkGraphHierarchicalBundle_GetBundlingStrengthMinValue_06 (HandleRef pThis)
static internal byte vtkGraphHierarchicalBundle_GetDirectMapping_07 (HandleRef pThis)
static internal int vtkGraphHierarchicalBundle_IsA_08 (HandleRef pThis, string type)
static internal int vtkGraphHierarchicalBundle_IsTypeOf_09 (string type)
static internal IntPtr vtkGraphHierarchicalBundle_NewInstance_11 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkGraphHierarchicalBundle_SafeDownCast_12 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkGraphHierarchicalBundle_SetBundlingStrength_13 (HandleRef pThis, double _arg)
static internal void vtkGraphHierarchicalBundle_SetDirectMapping_14 (HandleRef pThis, byte _arg)

Static Private Member Functions

static vtkGraphHierarchicalBundle ()
 Automatically generated type registration mechanics.

Detailed Description

vtkGraphHierarchicalBundle - layout graph arcs in bundles

Description This algorithm creates a vtkPolyData from a vtkGraph. As opposed to vtkGraphToPolyData, which converts each arc into a straight line, each arc is converted to a polyline, following a tree structure. The filter requires both a vtkGraph and vtkTree as input. The tree vertices must be a superset of the graph vertices. A common example is when the graph vertices correspond to the leaves of the tree, but the internal vertices of the tree represent groupings of graph vertices. The algorithm matches the vertices using the array "PedigreeId". The user may alternately set the DirectMapping flag to indicate that the two structures must have directly corresponding offsets (i.e. node i in the graph must correspond to node i in the tree).

The vtkGraph defines the topology of the output vtkPolyData (i.e. the connections between nodes) while the vtkTree defines the geometry (i.e. the location of nodes and arc routes). Thus, the tree must have been assigned vertex locations, but the graph does not need locations, in fact they will be ignored. The edges approximately follow the path from the source to target nodes in the tree. A bundling parameter controls how closely the edges are bundled together along the tree structure.

You may follow this algorithm with vtkSplineFilter in order to make nicely curved edges.


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

Kitware.VTK.vtkGraphHierarchicalBundle.vtkGraphHierarchicalBundle ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Undocumented Block.


Member Function Documentation

If on, uses direct mapping from tree to graph vertices. If off, both the graph and tree must contain PedigreeId arrays which are used to match graph and tree vertices. Default is off.

If on, uses direct mapping from tree to graph vertices. If off, both the graph and tree must contain PedigreeId arrays which are used to match graph and tree vertices. Default is off.

override void Kitware.VTK.vtkGraphHierarchicalBundle.Dispose ( bool  disposing) [protected]

Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Set the input type of the algorithm to vtkGraph.

The level of arc bundling in the graph. A strength of 0 creates straight lines, while a strength of 1 forces arcs to pass directly through hierarchy node points. The default value is 0.8.

The level of arc bundling in the graph. A strength of 0 creates straight lines, while a strength of 1 forces arcs to pass directly through hierarchy node points. The default value is 0.8.

The level of arc bundling in the graph. A strength of 0 creates straight lines, while a strength of 1 forces arcs to pass directly through hierarchy node points. The default value is 0.8.

If on, uses direct mapping from tree to graph vertices. If off, both the graph and tree must contain PedigreeId arrays which are used to match graph and tree vertices. Default is off.

override int Kitware.VTK.vtkGraphHierarchicalBundle.IsA ( string  type) [virtual]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

static new int Kitware.VTK.vtkGraphHierarchicalBundle.IsTypeOf ( string  type) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkGraphHierarchicalBundle.SetBundlingStrength ( double  _arg) [virtual]

The level of arc bundling in the graph. A strength of 0 creates straight lines, while a strength of 1 forces arcs to pass directly through hierarchy node points. The default value is 0.8.

virtual void Kitware.VTK.vtkGraphHierarchicalBundle.SetDirectMapping ( bool  _arg) [virtual]

If on, uses direct mapping from tree to graph vertices. If off, both the graph and tree must contain PedigreeId arrays which are used to match graph and tree vertices. Default is off.

static internal int Kitware.VTK.vtkGraphHierarchicalBundle.vtkGraphHierarchicalBundle_FillInputPortInformation_03 ( HandleRef  pThis,
int  port,
HandleRef  info 
) [private]
static internal int Kitware.VTK.vtkGraphHierarchicalBundle.vtkGraphHierarchicalBundle_IsA_08 ( HandleRef  pThis,
string  type 
) [private]
static internal IntPtr Kitware.VTK.vtkGraphHierarchicalBundle.vtkGraphHierarchicalBundle_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkGraphHierarchicalBundle.vtkGraphHierarchicalBundle_NewInstance_11 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkGraphHierarchicalBundle.vtkGraphHierarchicalBundle_SafeDownCast_12 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkGraphHierarchicalBundle.vtkGraphHierarchicalBundle_SetBundlingStrength_13 ( HandleRef  pThis,
double  _arg 
) [private]
static internal void Kitware.VTK.vtkGraphHierarchicalBundle.vtkGraphHierarchicalBundle_SetDirectMapping_14 ( HandleRef  pThis,
byte  _arg 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkGraphHierarchicalBundle.MRClassNameKey = "26vtkGraphHierarchicalBundle" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

new const string Kitware.VTK.vtkGraphHierarchicalBundle.MRFullTypeName = "Kitware.VTK.vtkGraphHierarchicalBundle"

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.


The documentation for this class was generated from the following file: