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

vtkIdList - list of point or cell ids More...

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

List of all members.

Public Member Functions

 vtkIdList (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkIdList ()
 Undocumented Block.
int Allocate (int sz, int strategy)
 Undocumented Block.
void DeepCopy (vtkIdList ids)
 Copy an id list by explicitly copying the internal array.
void DeleteId (int vtkid)
 Delete specified id from list. Will remove all occurrences of id in list.
int GetId (int i)
 Return the id at location i.
int GetNumberOfIds ()
 Return the number of id's in the list.
IntPtr GetPointer (int i)
 Get a pointer to a particular data index.
void Initialize ()
 Undocumented Block.
void InsertId (int i, int vtkid)
 Set the id at location i. Does range checking and allocates memory as necessary.
int InsertNextId (int vtkid)
 In-lined for performance.
int InsertUniqueId (int vtkid)
 If id is not already in list, insert it and return location in list. Otherwise return just location in list.
void IntersectWith (vtkIdList otherIds)
 Intersect this list with another vtkIdList. Updates current list according to result of intersection operation.
override int IsA (string type)
 Undocumented Block.
int IsId (int vtkid)
 In-lined for performance.
new vtkIdList NewInstance ()
 Undocumented Block.
void Reset ()
 Reset to an empty state.
void SetId (int i, int vtkid)
 Set the id at location i. Doesn't do range checking so it's a bit faster than InsertId. Make sure you use SetNumberOfIds() to allocate memory prior to using SetId().
void SetNumberOfIds (int number)
 Specify the number of ids for this object to hold. Does an allocation as well as setting the number of ids.
void Squeeze ()
 Free any unused memory.
IntPtr WritePointer (int i, int number)
 Get a pointer to a particular data index. Make sure data is allocated for the number of items requested. Set MaxId according to the number of data values requested.

Static Public Member Functions

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

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "9vtkIdList"
 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 vtkIdList_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkIdList_Allocate_01 (HandleRef pThis, int sz, int strategy)
static internal void vtkIdList_DeepCopy_02 (HandleRef pThis, HandleRef ids)
static internal void vtkIdList_DeleteId_03 (HandleRef pThis, int vtkid)
static internal int vtkIdList_GetId_04 (HandleRef pThis, int i)
static internal int vtkIdList_GetNumberOfIds_05 (HandleRef pThis)
static internal IntPtr vtkIdList_GetPointer_06 (HandleRef pThis, int i)
static internal void vtkIdList_Initialize_07 (HandleRef pThis)
static internal void vtkIdList_InsertId_08 (HandleRef pThis, int i, int vtkid)
static internal int vtkIdList_InsertNextId_09 (HandleRef pThis, int vtkid)
static internal int vtkIdList_InsertUniqueId_10 (HandleRef pThis, int vtkid)
static internal void vtkIdList_IntersectWith_11 (HandleRef pThis, HandleRef otherIds)
static internal int vtkIdList_IsA_12 (HandleRef pThis, string type)
static internal int vtkIdList_IsId_13 (HandleRef pThis, int vtkid)
static internal int vtkIdList_IsTypeOf_14 (string type)
static internal IntPtr vtkIdList_NewInstance_16 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkIdList_Reset_17 (HandleRef pThis)
static internal IntPtr vtkIdList_SafeDownCast_18 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkIdList_SetId_19 (HandleRef pThis, int i, int vtkid)
static internal void vtkIdList_SetNumberOfIds_20 (HandleRef pThis, int number)
static internal void vtkIdList_Squeeze_21 (HandleRef pThis)
static internal IntPtr vtkIdList_WritePointer_22 (HandleRef pThis, int i, int number)

Static Private Member Functions

static vtkIdList ()
 Automatically generated type registration mechanics.

Detailed Description

vtkIdList - list of point or cell ids

Description vtkIdList is used to represent and pass data id's between objects. vtkIdList may represent any type of integer id, but usually represents point and cell ids.


Constructor & Destructor Documentation

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

Automatically generated type registration mechanics.

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

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

Undocumented Block.


Member Function Documentation

int Kitware.VTK.vtkIdList.Allocate ( int  sz,
int  strategy 
)

Undocumented Block.

Copy an id list by explicitly copying the internal array.

void Kitware.VTK.vtkIdList.DeleteId ( int  vtkid)

Delete specified id from list. Will remove all occurrences of id in list.

override void Kitware.VTK.vtkIdList.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.vtkObject.

Return the id at location i.

Return the number of id's in the list.

Get a pointer to a particular data index.

Undocumented Block.

void Kitware.VTK.vtkIdList.InsertId ( int  i,
int  vtkid 
)

Set the id at location i. Does range checking and allocates memory as necessary.

In-lined for performance.

If id is not already in list, insert it and return location in list. Otherwise return just location in list.

Intersect this list with another vtkIdList. Updates current list according to result of intersection operation.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

int Kitware.VTK.vtkIdList.IsId ( int  vtkid)

In-lined for performance.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

static new vtkIdList Kitware.VTK.vtkIdList.New ( ) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Reset to an empty state.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Here is the call graph for this function:

void Kitware.VTK.vtkIdList.SetId ( int  i,
int  vtkid 
)

Set the id at location i. Doesn't do range checking so it's a bit faster than InsertId. Make sure you use SetNumberOfIds() to allocate memory prior to using SetId().

Specify the number of ids for this object to hold. Does an allocation as well as setting the number of ids.

Free any unused memory.

static internal int Kitware.VTK.vtkIdList.vtkIdList_Allocate_01 ( HandleRef  pThis,
int  sz,
int  strategy 
) [private]
static internal void Kitware.VTK.vtkIdList.vtkIdList_DeepCopy_02 ( HandleRef  pThis,
HandleRef  ids 
) [private]
static internal void Kitware.VTK.vtkIdList.vtkIdList_DeleteId_03 ( HandleRef  pThis,
int  vtkid 
) [private]
static internal int Kitware.VTK.vtkIdList.vtkIdList_GetId_04 ( HandleRef  pThis,
int  i 
) [private]
static internal int Kitware.VTK.vtkIdList.vtkIdList_GetNumberOfIds_05 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkIdList.vtkIdList_GetPointer_06 ( HandleRef  pThis,
int  i 
) [private]
static internal void Kitware.VTK.vtkIdList.vtkIdList_Initialize_07 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkIdList.vtkIdList_InsertId_08 ( HandleRef  pThis,
int  i,
int  vtkid 
) [private]
static internal int Kitware.VTK.vtkIdList.vtkIdList_InsertNextId_09 ( HandleRef  pThis,
int  vtkid 
) [private]
static internal int Kitware.VTK.vtkIdList.vtkIdList_InsertUniqueId_10 ( HandleRef  pThis,
int  vtkid 
) [private]
static internal void Kitware.VTK.vtkIdList.vtkIdList_IntersectWith_11 ( HandleRef  pThis,
HandleRef  otherIds 
) [private]
static internal int Kitware.VTK.vtkIdList.vtkIdList_IsA_12 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkIdList.vtkIdList_IsId_13 ( HandleRef  pThis,
int  vtkid 
) [private]
static internal int Kitware.VTK.vtkIdList.vtkIdList_IsTypeOf_14 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkIdList.vtkIdList_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkIdList.vtkIdList_NewInstance_16 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkIdList.vtkIdList_Reset_17 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkIdList.vtkIdList_SafeDownCast_18 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkIdList.vtkIdList_SetId_19 ( HandleRef  pThis,
int  i,
int  vtkid 
) [private]
static internal void Kitware.VTK.vtkIdList.vtkIdList_SetNumberOfIds_20 ( HandleRef  pThis,
int  number 
) [private]
static internal void Kitware.VTK.vtkIdList.vtkIdList_Squeeze_21 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkIdList.vtkIdList_WritePointer_22 ( HandleRef  pThis,
int  i,
int  number 
) [private]
IntPtr Kitware.VTK.vtkIdList.WritePointer ( int  i,
int  number 
)

Get a pointer to a particular data index. Make sure data is allocated for the number of items requested. Set MaxId according to the number of data values requested.


Member Data Documentation

new readonly string Kitware.VTK.vtkIdList.MRClassNameKey = "9vtkIdList" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkObject.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkObject.


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