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

vtkFieldData - represent and manipulate fields of data More...

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

List of all members.

Public Member Functions

 vtkFieldData (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkFieldData ()
 Undocumented Block.
int AddArray (vtkAbstractArray array)
 Add an array to the array list. If an array with the same name already exists - then the added array will replace it.
int Allocate (int sz, int ext)
 Allocate data for each array. Note that ext is no longer used.
void AllocateArrays (int num)
 AllocateOfArrays actually sets the number of vtkAbstractArray pointers in the vtkFieldData object, not the number of used pointers (arrays). Adding more arrays will cause the object to dynamically adjust the number of pointers if it needs to extend. Although AllocateArrays can be used if the number of arrays which will be added is known, it can be omitted with a small computation cost.
virtual void CopyAllOff (int unused)
 Turn off copying of all data. During the copying/passing, the following rules are followed for each array: 1. If the copy flag for an array is set (on or off), it is applied This overrides rule 2. 2. If CopyAllOn is set, copy the array. If CopyAllOff is set, do not copy the array.
virtual void CopyAllOn (int unused)
 Turn on copying of all data. During the copying/passing, the following rules are followed for each array: 1. If the copy flag for an array is set (on or off), it is applied This overrides rule 2. 2. If CopyAllOn is set, copy the array. If CopyAllOff is set, do not copy the array.
void CopyFieldOff (string name)
 Turn on/off the copying of the field specified by name. During the copying/passing, the following rules are followed for each array: 1. If the copy flag for an array is set (on or off), it is applied This overrides rule 2. 2. If CopyAllOn is set, copy the array. If CopyAllOff is set, do not copy the array.
void CopyFieldOn (string name)
 Turn on/off the copying of the field specified by name. During the copying/passing, the following rules are followed for each array: 1. If the copy flag for an array is set (on or off), it is applied This overrides rule 2. 2. If CopyAllOn is set, copy the array. If CopyAllOff is set, do not copy the array.
void CopyStructure (vtkFieldData arg0)
 Copy data array structure from a given field. The same arrays will exist with the same types, but will contain nothing in the copy.
virtual void DeepCopy (vtkFieldData da)
 Copy a field by creating new data arrays (i.e., duplicate storage).
vtkAbstractArray GetAbstractArray (int i)
 Returns the ith array in the field. Unlike GetArray(), this method returns a vtkAbstractArray. A NULL is returned only if the index i is out of range.
vtkAbstractArray GetAbstractArray (string arrayName, ref int index)
 Return the array with the name given. Returns NULL is array not found. Unlike GetArray(), this method returns a vtkAbstractArray. Also returns index of array if found, -1 otherwise.
vtkAbstractArray GetAbstractArray (string arrayName)
 Return the array with the name given. Returns NULL is array not found. Unlike GetArray(), this method returns a vtkAbstractArray.
virtual uint GetActualMemorySize ()
 Return the memory in kilobytes consumed by this field data. Used to support streaming and reading/writing data. The value returned is guaranteed to be greater than or equal to the memory required to actually represent the data represented by this object.
vtkDataArray GetArray (int i)
 Return the ith array in the field. A NULL is returned if the index i is out of range. A NULL is returned if the array at the given index is not a vtkDataArray.
vtkDataArray GetArray (string arrayName, ref int index)
 Return the array with the name given. Returns NULL is array not found. A NULL is also returned if the array with the given name is not a vtkDataArray. Also returns index of array if found, -1 otherwise.
vtkDataArray GetArray (string arrayName)
 Return the array with the name given. Returns NULL is array not found. A NULL is also returned if the array with the given name is not a vtkDataArray.
int GetArrayContainingComponent (int i, ref int arrayComp)
 Return the array containing the ith component of the field. The return value is an integer number n 0<=n<this->NumberOfArrays. Also, an integer value is returned indicating the component in the array is returned. Method returns -1 if specified component is not in the field.
string GetArrayName (int i)
 Get the name of ith array. Note that this is equivalent to: GetAbstractArray(i)->GetName() if ith array pointer is not NULL.
void GetField (vtkIdList ptId, vtkFieldData f)
 Get a field from a list of ids. Supplied field f should have same types and number of data arrays as this one (i.e., like CopyStructure() creates). This method should not be used if the instance is from a subclass of vtkFieldData (vtkPointData or vtkCellData). This is because in those cases, the attribute data is stored with the other fields and will cause the method to behave in an unexpected way.
override uint GetMTime ()
 Check object's components for modified times.
int GetNumberOfArrays ()
 Get the number of arrays of data available. This does not include NULL array pointers therefore after fd->AllocateArray(n); nArrays = GetNumberOfArrays() nArrays is not necessarily equal to n.
int GetNumberOfComponents ()
 Get the number of components in the field. This is determined by adding up the components in each non-NULL array. This method should not be used if the instance is from a subclass of vtkFieldData (vtkPointData or vtkCellData). This is because in those cases, the attribute data is stored with the other fields and will cause the method to behave in an unexpected way.
int GetNumberOfTuples ()
 Get the number of tuples in the field. Note: some fields have arrays with different numbers of tuples; this method returns the number of tuples in the first array. Mixed-length arrays may have to be treated specially. This method should not be used if the instance is from a subclass of vtkFieldData (vtkPointData or vtkCellData). This is because in those cases, the attribute data is stored with the other fields and will cause the method to behave in an unexpected way.
int HasArray (string name)
 Return 1 if an array with the given name could be found. 0 otherwise.
virtual void Initialize ()
 Release all data but do not delete object. Also, clear the copy flags.
int InsertNextTuple (int j, vtkFieldData source)
 Insert the jth tuple in source field data at the end of the tuple matrix. Range checking is performed and memory is allocated as necessary.
void InsertTuple (int i, int j, vtkFieldData source)
 Insert the jth tuple in source field data at the ith location. Range checking is performed and memory allocates as necessary.
override int IsA (string type)
 Undocumented Block.
new vtkFieldData NewInstance ()
 Undocumented Block.
virtual void PassData (vtkFieldData fd)
 Pass entire arrays of input data through to output. Obey the "copy" flags.
virtual void RemoveArray (string name)
 Remove an array (with the given name) from the list of arrays.
void Reset ()
 Resets each data array in the field (Reset() does not release memory but it makes the arrays look like they are empty.)
void SetNumberOfTuples (int number)
 Set the number of tuples for each data array in the field. This method should not be used if the instance is from a subclass of vtkFieldData (vtkPointData or vtkCellData). This is because in those cases, the attribute data is stored with the other fields and will cause the method to behave in an unexpected way.
void SetTuple (int i, int j, vtkFieldData source)
 Set the jth tuple in source field data at the ith location. Set operations mean that no range checking is performed, so they're faster.
virtual void ShallowCopy (vtkFieldData da)
 Copy a field by reference counting the data arrays.
void Squeeze ()
 Squeezes each data array in the field (Squeeze() reclaims unused memory.)

Static Public Member Functions

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

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "12vtkFieldData"
 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 vtkFieldData_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkFieldData_AddArray_01 (HandleRef pThis, HandleRef array)
static internal int vtkFieldData_Allocate_02 (HandleRef pThis, int sz, int ext)
static internal void vtkFieldData_AllocateArrays_03 (HandleRef pThis, int num)
static internal void vtkFieldData_CopyAllOff_04 (HandleRef pThis, int unused)
static internal void vtkFieldData_CopyAllOn_05 (HandleRef pThis, int unused)
static internal void vtkFieldData_CopyFieldOff_06 (HandleRef pThis, string name)
static internal void vtkFieldData_CopyFieldOn_07 (HandleRef pThis, string name)
static internal void vtkFieldData_CopyStructure_08 (HandleRef pThis, HandleRef arg0)
static internal void vtkFieldData_DeepCopy_09 (HandleRef pThis, HandleRef da)
static internal IntPtr vtkFieldData_GetAbstractArray_10 (HandleRef pThis, int i, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkFieldData_GetAbstractArray_11 (HandleRef pThis, string arrayName, ref int index, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkFieldData_GetAbstractArray_12 (HandleRef pThis, string arrayName, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal uint vtkFieldData_GetActualMemorySize_13 (HandleRef pThis)
static internal IntPtr vtkFieldData_GetArray_14 (HandleRef pThis, int i, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkFieldData_GetArray_15 (HandleRef pThis, string arrayName, ref int index, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkFieldData_GetArray_16 (HandleRef pThis, string arrayName, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkFieldData_GetArrayContainingComponent_17 (HandleRef pThis, int i, ref int arrayComp)
static internal IntPtr vtkFieldData_GetArrayName_18 (HandleRef pThis, int i)
static internal void vtkFieldData_GetField_19 (HandleRef pThis, HandleRef ptId, HandleRef f)
static internal uint vtkFieldData_GetMTime_20 (HandleRef pThis)
static internal int vtkFieldData_GetNumberOfArrays_21 (HandleRef pThis)
static internal int vtkFieldData_GetNumberOfComponents_22 (HandleRef pThis)
static internal int vtkFieldData_GetNumberOfTuples_23 (HandleRef pThis)
static internal int vtkFieldData_HasArray_24 (HandleRef pThis, string name)
static internal void vtkFieldData_Initialize_25 (HandleRef pThis)
static internal int vtkFieldData_InsertNextTuple_26 (HandleRef pThis, int j, HandleRef source)
static internal void vtkFieldData_InsertTuple_27 (HandleRef pThis, int i, int j, HandleRef source)
static internal int vtkFieldData_IsA_28 (HandleRef pThis, string type)
static internal int vtkFieldData_IsTypeOf_29 (string type)
static internal IntPtr vtkFieldData_NewInstance_31 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkFieldData_PassData_32 (HandleRef pThis, HandleRef fd)
static internal void vtkFieldData_RemoveArray_33 (HandleRef pThis, string name)
static internal void vtkFieldData_Reset_34 (HandleRef pThis)
static internal IntPtr vtkFieldData_SafeDownCast_35 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkFieldData_SetNumberOfTuples_36 (HandleRef pThis, int number)
static internal void vtkFieldData_SetTuple_37 (HandleRef pThis, int i, int j, HandleRef source)
static internal void vtkFieldData_ShallowCopy_38 (HandleRef pThis, HandleRef da)
static internal void vtkFieldData_Squeeze_39 (HandleRef pThis)

Static Private Member Functions

static vtkFieldData ()
 Automatically generated type registration mechanics.

Detailed Description

vtkFieldData - represent and manipulate fields of data

Description vtkFieldData represents and manipulates fields of data. The model of a field is a m x n matrix of data values, where m is the number of tuples, and n is the number of components. (A tuple is a row of n components in the matrix.) The field is assumed to be composed of a set of one or more data arrays, where the data in the arrays are of different types (e.g., int, double, char, etc.), and there may be variable numbers of components in each array. Note that each data array is assumed to be "m" in length (i.e., number of tuples), which typically corresponds to the number of points or cells in a dataset. Also, each data array must have a character-string name. (This is used to manipulate data.)

There are two ways of manipulating and interfacing to fields. You can do it generically by manipulating components/tuples via a double-type data exchange, or you can do it by grabbing the arrays and manipulating them directly. The former is simpler but performs type conversion, which is bad if your data has non-castable types like (void) pointers, or you lose information as a result of the cast. The, more efficient method means managing each array in the field. Using this method you can create faster, more efficient algorithms that do not lose information.


Constructor & Destructor Documentation

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

Automatically generated type registration mechanics.

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

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

Undocumented Block.


Member Function Documentation

Add an array to the array list. If an array with the same name already exists - then the added array will replace it.

int Kitware.VTK.vtkFieldData.Allocate ( int  sz,
int  ext 
)

Allocate data for each array. Note that ext is no longer used.

AllocateOfArrays actually sets the number of vtkAbstractArray pointers in the vtkFieldData object, not the number of used pointers (arrays). Adding more arrays will cause the object to dynamically adjust the number of pointers if it needs to extend. Although AllocateArrays can be used if the number of arrays which will be added is known, it can be omitted with a small computation cost.

virtual void Kitware.VTK.vtkFieldData.CopyAllOff ( int  unused) [virtual]

Turn off copying of all data. During the copying/passing, the following rules are followed for each array: 1. If the copy flag for an array is set (on or off), it is applied This overrides rule 2. 2. If CopyAllOn is set, copy the array. If CopyAllOff is set, do not copy the array.

Reimplemented in Kitware.VTK.vtkDataSetAttributes.

virtual void Kitware.VTK.vtkFieldData.CopyAllOn ( int  unused) [virtual]

Turn on copying of all data. During the copying/passing, the following rules are followed for each array: 1. If the copy flag for an array is set (on or off), it is applied This overrides rule 2. 2. If CopyAllOn is set, copy the array. If CopyAllOff is set, do not copy the array.

Reimplemented in Kitware.VTK.vtkDataSetAttributes.

Turn on/off the copying of the field specified by name. During the copying/passing, the following rules are followed for each array: 1. If the copy flag for an array is set (on or off), it is applied This overrides rule 2. 2. If CopyAllOn is set, copy the array. If CopyAllOff is set, do not copy the array.

void Kitware.VTK.vtkFieldData.CopyFieldOn ( string  name)

Turn on/off the copying of the field specified by name. During the copying/passing, the following rules are followed for each array: 1. If the copy flag for an array is set (on or off), it is applied This overrides rule 2. 2. If CopyAllOn is set, copy the array. If CopyAllOff is set, do not copy the array.

Copy data array structure from a given field. The same arrays will exist with the same types, but will contain nothing in the copy.

virtual void Kitware.VTK.vtkFieldData.DeepCopy ( vtkFieldData  da) [virtual]

Copy a field by creating new data arrays (i.e., duplicate storage).

Reimplemented in Kitware.VTK.vtkDataSetAttributes.

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

Reimplemented in Kitware.VTK.vtkDataSetAttributes, Kitware.VTK.vtkCellData, and Kitware.VTK.vtkPointData.

Returns the ith array in the field. Unlike GetArray(), this method returns a vtkAbstractArray. A NULL is returned only if the index i is out of range.

Here is the call graph for this function:

vtkAbstractArray Kitware.VTK.vtkFieldData.GetAbstractArray ( string  arrayName,
ref int  index 
)

Return the array with the name given. Returns NULL is array not found. Unlike GetArray(), this method returns a vtkAbstractArray. Also returns index of array if found, -1 otherwise.

Here is the call graph for this function:

Return the array with the name given. Returns NULL is array not found. Unlike GetArray(), this method returns a vtkAbstractArray.

Here is the call graph for this function:

Return the memory in kilobytes consumed by this field data. Used to support streaming and reading/writing data. The value returned is guaranteed to be greater than or equal to the memory required to actually represent the data represented by this object.

Return the ith array in the field. A NULL is returned if the index i is out of range. A NULL is returned if the array at the given index is not a vtkDataArray.

Here is the call graph for this function:

vtkDataArray Kitware.VTK.vtkFieldData.GetArray ( string  arrayName,
ref int  index 
)

Return the array with the name given. Returns NULL is array not found. A NULL is also returned if the array with the given name is not a vtkDataArray. Also returns index of array if found, -1 otherwise.

Here is the call graph for this function:

Return the array with the name given. Returns NULL is array not found. A NULL is also returned if the array with the given name is not a vtkDataArray.

Here is the call graph for this function:

int Kitware.VTK.vtkFieldData.GetArrayContainingComponent ( int  i,
ref int  arrayComp 
)

Return the array containing the ith component of the field. The return value is an integer number n 0<=n<this->NumberOfArrays. Also, an integer value is returned indicating the component in the array is returned. Method returns -1 if specified component is not in the field.

Get the name of ith array. Note that this is equivalent to: GetAbstractArray(i)->GetName() if ith array pointer is not NULL.

Get a field from a list of ids. Supplied field f should have same types and number of data arrays as this one (i.e., like CopyStructure() creates). This method should not be used if the instance is from a subclass of vtkFieldData (vtkPointData or vtkCellData). This is because in those cases, the attribute data is stored with the other fields and will cause the method to behave in an unexpected way.

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

Check object's components for modified times.

Reimplemented from Kitware.VTK.vtkObject.

Get the number of arrays of data available. This does not include NULL array pointers therefore after fd->AllocateArray(n); nArrays = GetNumberOfArrays() nArrays is not necessarily equal to n.

Get the number of components in the field. This is determined by adding up the components in each non-NULL array. This method should not be used if the instance is from a subclass of vtkFieldData (vtkPointData or vtkCellData). This is because in those cases, the attribute data is stored with the other fields and will cause the method to behave in an unexpected way.

Get the number of tuples in the field. Note: some fields have arrays with different numbers of tuples; this method returns the number of tuples in the first array. Mixed-length arrays may have to be treated specially. This method should not be used if the instance is from a subclass of vtkFieldData (vtkPointData or vtkCellData). This is because in those cases, the attribute data is stored with the other fields and will cause the method to behave in an unexpected way.

int Kitware.VTK.vtkFieldData.HasArray ( string  name)

Return 1 if an array with the given name could be found. 0 otherwise.

virtual void Kitware.VTK.vtkFieldData.Initialize ( ) [virtual]

Release all data but do not delete object. Also, clear the copy flags.

Reimplemented in Kitware.VTK.vtkDataSetAttributes.

Insert the jth tuple in source field data at the end of the tuple matrix. Range checking is performed and memory is allocated as necessary.

void Kitware.VTK.vtkFieldData.InsertTuple ( int  i,
int  j,
vtkFieldData  source 
)

Insert the jth tuple in source field data at the ith location. Range checking is performed and memory allocates as necessary.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkDataSetAttributes, Kitware.VTK.vtkCellData, and Kitware.VTK.vtkPointData.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkDataSetAttributes, Kitware.VTK.vtkCellData, and Kitware.VTK.vtkPointData.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkDataSetAttributes, Kitware.VTK.vtkCellData, and Kitware.VTK.vtkPointData.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkDataSetAttributes, Kitware.VTK.vtkCellData, and Kitware.VTK.vtkPointData.

virtual void Kitware.VTK.vtkFieldData.PassData ( vtkFieldData  fd) [virtual]

Pass entire arrays of input data through to output. Obey the "copy" flags.

Reimplemented in Kitware.VTK.vtkDataSetAttributes.

virtual void Kitware.VTK.vtkFieldData.RemoveArray ( string  name) [virtual]

Remove an array (with the given name) from the list of arrays.

Reimplemented in Kitware.VTK.vtkDataSetAttributes.

Resets each data array in the field (Reset() does not release memory but it makes the arrays look like they are empty.)

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkDataSetAttributes, Kitware.VTK.vtkPointData, and Kitware.VTK.vtkCellData.

Here is the call graph for this function:

Set the number of tuples for each data array in the field. This method should not be used if the instance is from a subclass of vtkFieldData (vtkPointData or vtkCellData). This is because in those cases, the attribute data is stored with the other fields and will cause the method to behave in an unexpected way.

void Kitware.VTK.vtkFieldData.SetTuple ( int  i,
int  j,
vtkFieldData  source 
)

Set the jth tuple in source field data at the ith location. Set operations mean that no range checking is performed, so they're faster.

virtual void Kitware.VTK.vtkFieldData.ShallowCopy ( vtkFieldData  da) [virtual]

Copy a field by reference counting the data arrays.

Reimplemented in Kitware.VTK.vtkDataSetAttributes.

Squeezes each data array in the field (Squeeze() reclaims unused memory.)

static internal int Kitware.VTK.vtkFieldData.vtkFieldData_AddArray_01 ( HandleRef  pThis,
HandleRef  array 
) [private]
static internal int Kitware.VTK.vtkFieldData.vtkFieldData_Allocate_02 ( HandleRef  pThis,
int  sz,
int  ext 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_AllocateArrays_03 ( HandleRef  pThis,
int  num 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_CopyAllOff_04 ( HandleRef  pThis,
int  unused 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_CopyAllOn_05 ( HandleRef  pThis,
int  unused 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_CopyFieldOff_06 ( HandleRef  pThis,
string  name 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_CopyFieldOn_07 ( HandleRef  pThis,
string  name 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_CopyStructure_08 ( HandleRef  pThis,
HandleRef  arg0 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_DeepCopy_09 ( HandleRef  pThis,
HandleRef  da 
) [private]
static internal IntPtr Kitware.VTK.vtkFieldData.vtkFieldData_GetAbstractArray_10 ( HandleRef  pThis,
int  i,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkFieldData.vtkFieldData_GetAbstractArray_11 ( HandleRef  pThis,
string  arrayName,
ref int  index,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkFieldData.vtkFieldData_GetAbstractArray_12 ( HandleRef  pThis,
string  arrayName,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal uint Kitware.VTK.vtkFieldData.vtkFieldData_GetActualMemorySize_13 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkFieldData.vtkFieldData_GetArray_14 ( HandleRef  pThis,
int  i,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkFieldData.vtkFieldData_GetArray_15 ( HandleRef  pThis,
string  arrayName,
ref int  index,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkFieldData.vtkFieldData_GetArray_16 ( HandleRef  pThis,
string  arrayName,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal int Kitware.VTK.vtkFieldData.vtkFieldData_GetArrayContainingComponent_17 ( HandleRef  pThis,
int  i,
ref int  arrayComp 
) [private]
static internal IntPtr Kitware.VTK.vtkFieldData.vtkFieldData_GetArrayName_18 ( HandleRef  pThis,
int  i 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_GetField_19 ( HandleRef  pThis,
HandleRef  ptId,
HandleRef  f 
) [private]
static internal uint Kitware.VTK.vtkFieldData.vtkFieldData_GetMTime_20 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkFieldData.vtkFieldData_GetNumberOfArrays_21 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkFieldData.vtkFieldData_GetNumberOfComponents_22 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkFieldData.vtkFieldData_GetNumberOfTuples_23 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkFieldData.vtkFieldData_HasArray_24 ( HandleRef  pThis,
string  name 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_Initialize_25 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkFieldData.vtkFieldData_InsertNextTuple_26 ( HandleRef  pThis,
int  j,
HandleRef  source 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_InsertTuple_27 ( HandleRef  pThis,
int  i,
int  j,
HandleRef  source 
) [private]
static internal int Kitware.VTK.vtkFieldData.vtkFieldData_IsA_28 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkFieldData.vtkFieldData_IsTypeOf_29 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkFieldData.vtkFieldData_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkFieldData.vtkFieldData_NewInstance_31 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_PassData_32 ( HandleRef  pThis,
HandleRef  fd 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_RemoveArray_33 ( HandleRef  pThis,
string  name 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_Reset_34 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkFieldData.vtkFieldData_SafeDownCast_35 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_SetNumberOfTuples_36 ( HandleRef  pThis,
int  number 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_SetTuple_37 ( HandleRef  pThis,
int  i,
int  j,
HandleRef  source 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_ShallowCopy_38 ( HandleRef  pThis,
HandleRef  da 
) [private]
static internal void Kitware.VTK.vtkFieldData.vtkFieldData_Squeeze_39 ( HandleRef  pThis) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkFieldData.MRClassNameKey = "12vtkFieldData" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkDataSetAttributes, Kitware.VTK.vtkCellData, and Kitware.VTK.vtkPointData.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkDataSetAttributes, Kitware.VTK.vtkCellData, and Kitware.VTK.vtkPointData.


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