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.vtkTransferAttributes Class Reference

vtkTransferAttributes - transfer data from a graph representation to a tree representation using direct mapping or pedigree ids. More...

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

List of all members.

Public Member Functions

 vtkTransferAttributes (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkTransferAttributes ()
 Create a vtkTransferAttributes object. Initial values are DirectMapping = false, DefaultValue = 1, SourceArrayName=0, TargetArrayName = 0, SourceFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS, TargetFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS.
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 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.
virtual string GetSourceArrayName ()
 The field name to use for storing the source array.
virtual int GetSourceFieldType ()
 The source field type for accessing the source array. Valid values are those from enum vtkDataObject::FieldAssociations.
virtual string GetTargetArrayName ()
 The field name to use for storing the source array.
virtual int GetTargetFieldType ()
 The target field type for accessing the target array. Valid values are those from enum vtkDataObject::FieldAssociations.
override int IsA (string type)
 Create a vtkTransferAttributes object. Initial values are DirectMapping = false, DefaultValue = 1, SourceArrayName=0, TargetArrayName = 0, SourceFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS, TargetFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS.
new vtkTransferAttributes NewInstance ()
 Create a vtkTransferAttributes object. Initial values are DirectMapping = false, DefaultValue = 1, SourceArrayName=0, TargetArrayName = 0, SourceFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS, TargetFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS.
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.
virtual void SetSourceArrayName (string _arg)
 The field name to use for storing the source array.
virtual void SetSourceFieldType (int _arg)
 The source field type for accessing the source array. Valid values are those from enum vtkDataObject::FieldAssociations.
virtual void SetTargetArrayName (string _arg)
 The field name to use for storing the source array.
virtual void SetTargetFieldType (int _arg)
 The target field type for accessing the target array. Valid values are those from enum vtkDataObject::FieldAssociations.

Static Public Member Functions

static new vtkTransferAttributes New ()
 Create a vtkTransferAttributes object. Initial values are DirectMapping = false, DefaultValue = 1, SourceArrayName=0, TargetArrayName = 0, SourceFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS, TargetFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS.
static new int IsTypeOf (string type)
 Create a vtkTransferAttributes object. Initial values are DirectMapping = false, DefaultValue = 1, SourceArrayName=0, TargetArrayName = 0, SourceFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS, TargetFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS.
static new vtkTransferAttributes SafeDownCast (vtkObjectBase o)
 Create a vtkTransferAttributes object. Initial values are DirectMapping = false, DefaultValue = 1, SourceArrayName=0, TargetArrayName = 0, SourceFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS, TargetFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS.

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "21vtkTransferAttributes"
 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 vtkTransferAttributes_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkTransferAttributes_DirectMappingOff_01 (HandleRef pThis)
static internal void vtkTransferAttributes_DirectMappingOn_02 (HandleRef pThis)
static internal int vtkTransferAttributes_FillInputPortInformation_03 (HandleRef pThis, int port, HandleRef info)
static internal byte vtkTransferAttributes_GetDirectMapping_04 (HandleRef pThis)
static internal IntPtr vtkTransferAttributes_GetSourceArrayName_05 (HandleRef pThis)
static internal int vtkTransferAttributes_GetSourceFieldType_06 (HandleRef pThis)
static internal IntPtr vtkTransferAttributes_GetTargetArrayName_07 (HandleRef pThis)
static internal int vtkTransferAttributes_GetTargetFieldType_08 (HandleRef pThis)
static internal int vtkTransferAttributes_IsA_09 (HandleRef pThis, string type)
static internal int vtkTransferAttributes_IsTypeOf_10 (string type)
static internal IntPtr vtkTransferAttributes_NewInstance_12 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkTransferAttributes_SafeDownCast_13 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkTransferAttributes_SetDirectMapping_14 (HandleRef pThis, byte _arg)
static internal void vtkTransferAttributes_SetSourceArrayName_15 (HandleRef pThis, string _arg)
static internal void vtkTransferAttributes_SetSourceFieldType_16 (HandleRef pThis, int _arg)
static internal void vtkTransferAttributes_SetTargetArrayName_17 (HandleRef pThis, string _arg)
static internal void vtkTransferAttributes_SetTargetFieldType_18 (HandleRef pThis, int _arg)

Static Private Member Functions

static vtkTransferAttributes ()
 Automatically generated type registration mechanics.

Detailed Description

vtkTransferAttributes - transfer data from a graph representation to a tree representation using direct mapping or pedigree ids.

Description 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).

Thanks


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

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

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

Create a vtkTransferAttributes object. Initial values are DirectMapping = false, DefaultValue = 1, SourceArrayName=0, TargetArrayName = 0, SourceFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS, TargetFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS.


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.vtkTransferAttributes.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.vtkPassInputTypeAlgorithm.

virtual int Kitware.VTK.vtkTransferAttributes.FillInputPortInformation ( int  port,
vtkInformation  info 
) [virtual]

Set the input type of the algorithm to vtkGraph.

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.

The field name to use for storing the source array.

The source field type for accessing the source array. Valid values are those from enum vtkDataObject::FieldAssociations.

The field name to use for storing the source array.

The target field type for accessing the target array. Valid values are those from enum vtkDataObject::FieldAssociations.

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

Create a vtkTransferAttributes object. Initial values are DirectMapping = false, DefaultValue = 1, SourceArrayName=0, TargetArrayName = 0, SourceFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS, TargetFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.

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

Create a vtkTransferAttributes object. Initial values are DirectMapping = false, DefaultValue = 1, SourceArrayName=0, TargetArrayName = 0, SourceFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS, TargetFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.

Create a vtkTransferAttributes object. Initial values are DirectMapping = false, DefaultValue = 1, SourceArrayName=0, TargetArrayName = 0, SourceFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS, TargetFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.

Create a vtkTransferAttributes object. Initial values are DirectMapping = false, DefaultValue = 1, SourceArrayName=0, TargetArrayName = 0, SourceFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS, TargetFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.

Create a vtkTransferAttributes object. Initial values are DirectMapping = false, DefaultValue = 1, SourceArrayName=0, TargetArrayName = 0, SourceFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS, TargetFieldType=vtkDataObject::FIELD_ASSOCIATION_POINTS.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkTransferAttributes.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.

virtual void Kitware.VTK.vtkTransferAttributes.SetSourceArrayName ( string  _arg) [virtual]

The field name to use for storing the source array.

virtual void Kitware.VTK.vtkTransferAttributes.SetSourceFieldType ( int  _arg) [virtual]

The source field type for accessing the source array. Valid values are those from enum vtkDataObject::FieldAssociations.

virtual void Kitware.VTK.vtkTransferAttributes.SetTargetArrayName ( string  _arg) [virtual]

The field name to use for storing the source array.

virtual void Kitware.VTK.vtkTransferAttributes.SetTargetFieldType ( int  _arg) [virtual]

The target field type for accessing the target array. Valid values are those from enum vtkDataObject::FieldAssociations.

static internal void Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_DirectMappingOff_01 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_DirectMappingOn_02 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_FillInputPortInformation_03 ( HandleRef  pThis,
int  port,
HandleRef  info 
) [private]
static internal byte Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_GetDirectMapping_04 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_GetSourceArrayName_05 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_GetSourceFieldType_06 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_GetTargetArrayName_07 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_GetTargetFieldType_08 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_IsA_09 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_IsTypeOf_10 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_NewInstance_12 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_SafeDownCast_13 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_SetDirectMapping_14 ( HandleRef  pThis,
byte  _arg 
) [private]
static internal void Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_SetSourceArrayName_15 ( HandleRef  pThis,
string  _arg 
) [private]
static internal void Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_SetSourceFieldType_16 ( HandleRef  pThis,
int  _arg 
) [private]
static internal void Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_SetTargetArrayName_17 ( HandleRef  pThis,
string  _arg 
) [private]
static internal void Kitware.VTK.vtkTransferAttributes.vtkTransferAttributes_SetTargetFieldType_18 ( HandleRef  pThis,
int  _arg 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkTransferAttributes.MRClassNameKey = "21vtkTransferAttributes" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPassInputTypeAlgorithm.


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