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

vtkAbstractPropPicker - abstract API for pickers that can pick an instance of vtkProp More...

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

List of all members.

Public Member Functions

 vtkAbstractPropPicker (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
virtual vtkActor GetActor ()
 Return the vtkActor that has been picked. If NULL, no actor was picked.
virtual vtkActor2D GetActor2D ()
 Return the vtkActor2D that has been picked. If NULL, no actor2D was picked.
virtual vtkAssembly GetAssembly ()
 Return the vtkAssembly that has been picked. If NULL, no assembly was picked. (Note: the returned assembly is the first node in the assembly path. If the path is one node long, then the assembly and the prop are the same, assuming that the first node is a vtkAssembly.)
virtual vtkAssemblyPath GetPath ()
 Return the vtkAssemblyPath that has been picked. The assembly path lists all the vtkProps that form an assembly. If no assembly is present, then the assembly path will have one node (which is the picked prop). The set method is used internally to set the path. (Note: the structure of an assembly path is a collection of vtkAssemblyNode, each node pointing to a vtkProp and (possibly) a transformation matrix.)
virtual vtkProp3D GetProp3D ()
 Return the vtkProp that has been picked. If NULL, no vtkProp3D was picked.
virtual vtkPropAssembly GetPropAssembly ()
 Return the vtkPropAssembly that has been picked. If NULL, no prop assembly was picked. (Note: the returned prop assembly is the first node in the assembly path. If the path is one node long, then the prop assembly and the prop are the same, assuming that the first node is a vtkPropAssembly.)
virtual vtkProp GetViewProp ()
 Return the vtkProp that has been picked. If NULL, nothing was picked. If anything at all was picked, this method will return something.
virtual vtkVolume GetVolume ()
 Return the vtkVolume that has been picked. If NULL, no volume was picked.
override int IsA (string type)
 Undocumented Block.
new vtkAbstractPropPicker NewInstance ()
 Undocumented Block.
virtual void SetPath (vtkAssemblyPath arg0)
 Return the vtkAssemblyPath that has been picked. The assembly path lists all the vtkProps that form an assembly. If no assembly is present, then the assembly path will have one node (which is the picked prop). The set method is used internally to set the path. (Note: the structure of an assembly path is a collection of vtkAssemblyNode, each node pointing to a vtkProp and (possibly) a transformation matrix.)

Static Public Member Functions

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

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "21vtkAbstractPropPicker"
 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 vtkAbstractPropPicker_GetActor_01 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkAbstractPropPicker_GetActor2D_02 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkAbstractPropPicker_GetAssembly_03 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkAbstractPropPicker_GetPath_04 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkAbstractPropPicker_GetProp3D_05 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkAbstractPropPicker_GetPropAssembly_06 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkAbstractPropPicker_GetViewProp_07 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkAbstractPropPicker_GetVolume_08 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkAbstractPropPicker_IsA_09 (HandleRef pThis, string type)
static internal int vtkAbstractPropPicker_IsTypeOf_10 (string type)
static internal IntPtr vtkAbstractPropPicker_NewInstance_11 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkAbstractPropPicker_SafeDownCast_12 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkAbstractPropPicker_SetPath_13 (HandleRef pThis, HandleRef arg0)

Static Private Member Functions

static vtkAbstractPropPicker ()
 Automatically generated type registration mechanics.

Detailed Description

vtkAbstractPropPicker - abstract API for pickers that can pick an instance of vtkProp

Description vtkAbstractPropPicker is an abstract superclass for pickers that can pick an instance of vtkProp. Some pickers, like vtkWorldPointPicker (not a subclass of this class), cannot identify the prop that is picked. Subclasses of vtkAbstractPropPicker return a prop in the form of a vtkAssemblyPath when a pick is invoked. Note that an vtkAssemblyPath contain a list of vtkAssemblyNodes, each of which in turn contains a reference to a vtkProp and a 4x4 transformation matrix. The path fully describes the entire pick path, so you can pick assemblies or portions of assemblies, or just grab the tail end of the vtkAssemblyPath (which is the picked prop).


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

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

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


Member Function Documentation

override void Kitware.VTK.vtkAbstractPropPicker.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.vtkAbstractPicker.

Reimplemented in Kitware.VTK.vtkAreaPicker, Kitware.VTK.vtkCellPicker, Kitware.VTK.vtkPicker, Kitware.VTK.vtkVolumePicker, Kitware.VTK.vtkRenderedAreaPicker, Kitware.VTK.vtkPropPicker, and Kitware.VTK.vtkPointPicker.

Return the vtkActor that has been picked. If NULL, no actor was picked.

Here is the call graph for this function:

Return the vtkActor2D that has been picked. If NULL, no actor2D was picked.

Here is the call graph for this function:

Return the vtkAssembly that has been picked. If NULL, no assembly was picked. (Note: the returned assembly is the first node in the assembly path. If the path is one node long, then the assembly and the prop are the same, assuming that the first node is a vtkAssembly.)

Here is the call graph for this function:

Return the vtkAssemblyPath that has been picked. The assembly path lists all the vtkProps that form an assembly. If no assembly is present, then the assembly path will have one node (which is the picked prop). The set method is used internally to set the path. (Note: the structure of an assembly path is a collection of vtkAssemblyNode, each node pointing to a vtkProp and (possibly) a transformation matrix.)

Here is the call graph for this function:

Return the vtkProp that has been picked. If NULL, no vtkProp3D was picked.

Here is the call graph for this function:

Return the vtkPropAssembly that has been picked. If NULL, no prop assembly was picked. (Note: the returned prop assembly is the first node in the assembly path. If the path is one node long, then the prop assembly and the prop are the same, assuming that the first node is a vtkPropAssembly.)

Here is the call graph for this function:

Return the vtkProp that has been picked. If NULL, nothing was picked. If anything at all was picked, this method will return something.

Here is the call graph for this function:

Return the vtkVolume that has been picked. If NULL, no volume was picked.

Here is the call graph for this function:

override int Kitware.VTK.vtkAbstractPropPicker.IsA ( string  type) [virtual]
static new int Kitware.VTK.vtkAbstractPropPicker.IsTypeOf ( string  type) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkAbstractPicker.

Reimplemented in Kitware.VTK.vtkCellPicker, Kitware.VTK.vtkPicker, Kitware.VTK.vtkAreaPicker, Kitware.VTK.vtkVolumePicker, Kitware.VTK.vtkPropPicker, Kitware.VTK.vtkRenderedAreaPicker, and Kitware.VTK.vtkPointPicker.

Here is the call graph for this function:

Return the vtkAssemblyPath that has been picked. The assembly path lists all the vtkProps that form an assembly. If no assembly is present, then the assembly path will have one node (which is the picked prop). The set method is used internally to set the path. (Note: the structure of an assembly path is a collection of vtkAssemblyNode, each node pointing to a vtkProp and (possibly) a transformation matrix.)

static internal IntPtr Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_GetActor2D_02 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_GetActor_01 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_GetAssembly_03 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_GetPath_04 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_GetProp3D_05 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_GetPropAssembly_06 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_GetViewProp_07 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_GetVolume_08 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal int Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_IsA_09 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_IsTypeOf_10 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_NewInstance_11 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_SafeDownCast_12 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkAbstractPropPicker.vtkAbstractPropPicker_SetPath_13 ( HandleRef  pThis,
HandleRef  arg0 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkAbstractPropPicker.MRClassNameKey = "21vtkAbstractPropPicker" [static]
new const string Kitware.VTK.vtkAbstractPropPicker.MRFullTypeName = "Kitware.VTK.vtkAbstractPropPicker"

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