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

vtkTreeMapLayout - layout a vtkTree into a tree map More...

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

List of all members.

Public Member Functions

 vtkTreeMapLayout (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkTreeMapLayout ()
 Undocumented Block.
int FindVertex (IntPtr pnt, IntPtr binfo)
 Returns the vertex id that contains pnt (or -1 if no one contains it)
void GetBoundingBox (int id, IntPtr binfo)
 Return the min and max 2D points of the vertex's bounding box.
virtual vtkTreeMapLayoutStrategy GetLayoutStrategy ()
 The strategy to use when laying out the tree map.
override uint GetMTime ()
 Get the modification time of the layout algorithm.
virtual string GetRectanglesFieldName ()
 The field name to use for storing the rectangles for each vertex. The rectangles are stored in a quadruple float array (minX, maxX, minY, maxY).
override int IsA (string type)
 Undocumented Block.
new vtkTreeMapLayout NewInstance ()
 Undocumented Block.
void SetLayoutStrategy (vtkTreeMapLayoutStrategy strategy)
 The strategy to use when laying out the tree map.
virtual void SetRectanglesFieldName (string _arg)
 The field name to use for storing the rectangles for each vertex. The rectangles are stored in a quadruple float array (minX, maxX, minY, maxY).
virtual void SetSizeArrayName (string name)
 The array to use for the size of each vertex.

Static Public Member Functions

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

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "16vtkTreeMapLayout"
 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 vtkTreeMapLayout_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkTreeMapLayout_FindVertex_01 (HandleRef pThis, IntPtr pnt, IntPtr binfo)
static internal void vtkTreeMapLayout_GetBoundingBox_02 (HandleRef pThis, int id, IntPtr binfo)
static internal IntPtr vtkTreeMapLayout_GetLayoutStrategy_03 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal uint vtkTreeMapLayout_GetMTime_04 (HandleRef pThis)
static internal IntPtr vtkTreeMapLayout_GetRectanglesFieldName_05 (HandleRef pThis)
static internal int vtkTreeMapLayout_IsA_06 (HandleRef pThis, string type)
static internal int vtkTreeMapLayout_IsTypeOf_07 (string type)
static internal IntPtr vtkTreeMapLayout_NewInstance_09 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkTreeMapLayout_SafeDownCast_10 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkTreeMapLayout_SetLayoutStrategy_11 (HandleRef pThis, HandleRef strategy)
static internal void vtkTreeMapLayout_SetRectanglesFieldName_12 (HandleRef pThis, string _arg)
static internal void vtkTreeMapLayout_SetSizeArrayName_13 (HandleRef pThis, string name)

Static Private Member Functions

static vtkTreeMapLayout ()
 Automatically generated type registration mechanics.

Detailed Description

vtkTreeMapLayout - layout a vtkTree into a tree map

Description vtkTreeMapLayout assigns rectangular regions to each vertex in the tree, creating a tree map. The data is added as a data array with four components per tuple representing the location and size of the rectangle using the format (Xmin, Xmax, Ymin, Ymax).

This algorithm relies on a helper class to perform the actual layout. This helper class is a subclass of vtkTreeMapLayoutStrategy.

Thanks Thanks to Brian Wylie and Ken Moreland from Sandia National Laboratories for help developing this class.

Tree map concept comes from: Shneiderman, B. 1992. Tree visualization with tree-maps: 2-d space-filling approach. ACM Trans. Graph. 11, 1 (Jan. 1992), 92-99.


Constructor & Destructor Documentation

static Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout ( ) [static, private]

Automatically generated type registration mechanics.

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

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

Undocumented Block.


Member Function Documentation

override void Kitware.VTK.vtkTreeMapLayout.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.vtkTreeAlgorithm.

int Kitware.VTK.vtkTreeMapLayout.FindVertex ( IntPtr  pnt,
IntPtr  binfo 
)

Returns the vertex id that contains pnt (or -1 if no one contains it)

void Kitware.VTK.vtkTreeMapLayout.GetBoundingBox ( int  id,
IntPtr  binfo 
)

Return the min and max 2D points of the vertex's bounding box.

The strategy to use when laying out the tree map.

Here is the call graph for this function:

override uint Kitware.VTK.vtkTreeMapLayout.GetMTime ( ) [virtual]

Get the modification time of the layout algorithm.

Reimplemented from Kitware.VTK.vtkObject.

The field name to use for storing the rectangles for each vertex. The rectangles are stored in a quadruple float array (minX, maxX, minY, maxY).

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkTreeAlgorithm.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkTreeAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkTreeAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkTreeAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkTreeAlgorithm.

Here is the call graph for this function:

The strategy to use when laying out the tree map.

virtual void Kitware.VTK.vtkTreeMapLayout.SetRectanglesFieldName ( string  _arg) [virtual]

The field name to use for storing the rectangles for each vertex. The rectangles are stored in a quadruple float array (minX, maxX, minY, maxY).

virtual void Kitware.VTK.vtkTreeMapLayout.SetSizeArrayName ( string  name) [virtual]

The array to use for the size of each vertex.

static internal int Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_FindVertex_01 ( HandleRef  pThis,
IntPtr  pnt,
IntPtr  binfo 
) [private]
static internal void Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_GetBoundingBox_02 ( HandleRef  pThis,
int  id,
IntPtr  binfo 
) [private]
static internal IntPtr Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_GetLayoutStrategy_03 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal uint Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_GetMTime_04 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_GetRectanglesFieldName_05 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_IsA_06 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_IsTypeOf_07 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_NewInstance_09 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_SafeDownCast_10 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_SetLayoutStrategy_11 ( HandleRef  pThis,
HandleRef  strategy 
) [private]
static internal void Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_SetRectanglesFieldName_12 ( HandleRef  pThis,
string  _arg 
) [private]
static internal void Kitware.VTK.vtkTreeMapLayout.vtkTreeMapLayout_SetSizeArrayName_13 ( HandleRef  pThis,
string  name 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkTreeMapLayout.MRClassNameKey = "16vtkTreeMapLayout" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkTreeAlgorithm.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkTreeAlgorithm.


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