ActiViz .NET
5.8.0
|
vtkFloatArray - dynamic, self-adjusting array of float More...
Public Member Functions | |
vtkFloatArray (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkFloatArray () | |
Undocumented Block. | |
override int | GetDataType () |
Get the data type. | |
IntPtr | GetPointer (int id) |
Get the address of a particular data index. Performs no checks to verify that the memory has been allocated etc. | |
void | GetTupleValue (int i, IntPtr tuple) |
Copy the tuple value into a user-provided array. | |
float | GetValue (int id) |
Get the data at a particular index. | |
float[] | GetValueRange (int comp) |
Get the range of array values for the given component in the native data type. | |
void | GetValueRange (IntPtr range, int comp) |
Get the range of array values for the given component in the native data type. | |
float[] | GetValueRange () |
Get the range of array values for the 0th component in the native data type. | |
void | GetValueRange (IntPtr range) |
Get the range of array values for the 0th component in the native data type. | |
int | InsertNextTupleValue (IntPtr tuple) |
Insert (memory allocation performed) the tuple onto the end of the array. | |
int | InsertNextValue (float f) |
Insert data at the end of the array. Return its location in the array. | |
void | InsertTupleValue (int i, IntPtr tuple) |
Insert (memory allocation performed) the tuple into the ith location in the array. | |
void | InsertValue (int id, float f) |
Insert data at a specified position in the array. | |
override int | IsA (string type) |
Undocumented Block. | |
new vtkFloatArray | NewInstance () |
Undocumented Block. | |
void | SetArray (IntPtr array, int size, int save) |
This method lets the user specify data to be held by the array. The array argument is a pointer to the data. size is the size of the array supplied by the user. Set save to 1 to keep the class from deleting the array when it cleans up or reallocates memory. The class uses the actual array provided; it does not copy the data from the suppled array. | |
void | SetArray (IntPtr array, int size, int save, int deleteMethod) |
This method lets the user specify data to be held by the array. The array argument is a pointer to the data. size is the size of the array supplied by the user. Set save to 1 to keep the class from deleting the array when it cleans up or reallocates memory. The class uses the actual array provided; it does not copy the data from the suppled array. | |
void | SetNumberOfValues (int number) |
Specify the number of values for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetValue() method for fast insertion. | |
void | SetTupleValue (int i, IntPtr tuple) |
Set the tuple value at the ith location in the array. | |
void | SetValue (int id, float value) |
Set the data at a particular index. Does not do range checking. Make sure you use the method SetNumberOfValues() before inserting data. | |
IntPtr | WritePointer (int id, int number) |
Get the address of 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 vtkFloatArray | New () |
Undocumented Block. | |
static float | GetDataTypeValueMax () |
Get the maximum data value in its native type. | |
static float | GetDataTypeValueMin () |
Get the minimum data value in its native type. | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkFloatArray | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkFloatArray" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "13vtkFloatArray" |
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 | vtkFloatArray_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkFloatArray_GetDataType_01 (HandleRef pThis) |
static internal float | vtkFloatArray_GetDataTypeValueMax_02 () |
static internal float | vtkFloatArray_GetDataTypeValueMin_03 () |
static internal IntPtr | vtkFloatArray_GetPointer_04 (HandleRef pThis, int id) |
static internal void | vtkFloatArray_GetTupleValue_05 (HandleRef pThis, int i, IntPtr tuple) |
static internal float | vtkFloatArray_GetValue_06 (HandleRef pThis, int id) |
static internal IntPtr | vtkFloatArray_GetValueRange_07 (HandleRef pThis, int comp) |
static internal void | vtkFloatArray_GetValueRange_08 (HandleRef pThis, IntPtr range, int comp) |
static internal IntPtr | vtkFloatArray_GetValueRange_09 (HandleRef pThis) |
static internal void | vtkFloatArray_GetValueRange_10 (HandleRef pThis, IntPtr range) |
static internal int | vtkFloatArray_InsertNextTupleValue_11 (HandleRef pThis, IntPtr tuple) |
static internal int | vtkFloatArray_InsertNextValue_12 (HandleRef pThis, float f) |
static internal void | vtkFloatArray_InsertTupleValue_13 (HandleRef pThis, int i, IntPtr tuple) |
static internal void | vtkFloatArray_InsertValue_14 (HandleRef pThis, int id, float f) |
static internal int | vtkFloatArray_IsA_15 (HandleRef pThis, string type) |
static internal int | vtkFloatArray_IsTypeOf_16 (string type) |
static internal IntPtr | vtkFloatArray_NewInstance_18 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkFloatArray_SafeDownCast_19 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkFloatArray_SetArray_20 (HandleRef pThis, IntPtr array, int size, int save) |
static internal void | vtkFloatArray_SetArray_21 (HandleRef pThis, IntPtr array, int size, int save, int deleteMethod) |
static internal void | vtkFloatArray_SetNumberOfValues_22 (HandleRef pThis, int number) |
static internal void | vtkFloatArray_SetTupleValue_23 (HandleRef pThis, int i, IntPtr tuple) |
static internal void | vtkFloatArray_SetValue_24 (HandleRef pThis, int id, float value) |
static internal IntPtr | vtkFloatArray_WritePointer_25 (HandleRef pThis, int id, int number) |
Static Private Member Functions | |
static | vtkFloatArray () |
Automatically generated type registration mechanics. |
vtkFloatArray - dynamic, self-adjusting array of float
Description vtkFloatArray is an array of values of type float. It provides methods for insertion and retrieval of values and will automatically resize itself to hold new data.
static Kitware.VTK.vtkFloatArray.vtkFloatArray | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkFloatArray.vtkFloatArray | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Undocumented Block.
override void Kitware.VTK.vtkFloatArray.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.vtkDataArray.
Reimplemented in Kitware.VTK.vtkTypeFloat32Array.
override int Kitware.VTK.vtkFloatArray.GetDataType | ( | ) | [virtual] |
Get the data type.
Reimplemented from Kitware.VTK.vtkAbstractArray.
static float Kitware.VTK.vtkFloatArray.GetDataTypeValueMax | ( | ) | [static] |
Get the maximum data value in its native type.
static float Kitware.VTK.vtkFloatArray.GetDataTypeValueMin | ( | ) | [static] |
Get the minimum data value in its native type.
IntPtr Kitware.VTK.vtkFloatArray.GetPointer | ( | int | id | ) |
Get the address of a particular data index. Performs no checks to verify that the memory has been allocated etc.
void Kitware.VTK.vtkFloatArray.GetTupleValue | ( | int | i, |
IntPtr | tuple | ||
) |
Copy the tuple value into a user-provided array.
float Kitware.VTK.vtkFloatArray.GetValue | ( | int | id | ) |
Get the data at a particular index.
float [] Kitware.VTK.vtkFloatArray.GetValueRange | ( | int | comp | ) |
Get the range of array values for the given component in the native data type.
void Kitware.VTK.vtkFloatArray.GetValueRange | ( | IntPtr | range, |
int | comp | ||
) |
Get the range of array values for the given component in the native data type.
float [] Kitware.VTK.vtkFloatArray.GetValueRange | ( | ) |
Get the range of array values for the 0th component in the native data type.
void Kitware.VTK.vtkFloatArray.GetValueRange | ( | IntPtr | range | ) |
Get the range of array values for the 0th component in the native data type.
int Kitware.VTK.vtkFloatArray.InsertNextTupleValue | ( | IntPtr | tuple | ) |
Insert (memory allocation performed) the tuple onto the end of the array.
int Kitware.VTK.vtkFloatArray.InsertNextValue | ( | float | f | ) |
Insert data at the end of the array. Return its location in the array.
void Kitware.VTK.vtkFloatArray.InsertTupleValue | ( | int | i, |
IntPtr | tuple | ||
) |
Insert (memory allocation performed) the tuple into the ith location in the array.
void Kitware.VTK.vtkFloatArray.InsertValue | ( | int | id, |
float | f | ||
) |
Insert data at a specified position in the array.
override int Kitware.VTK.vtkFloatArray.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataArray.
Reimplemented in Kitware.VTK.vtkTypeFloat32Array.
static new int Kitware.VTK.vtkFloatArray.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataArray.
Reimplemented in Kitware.VTK.vtkTypeFloat32Array.
static new vtkFloatArray Kitware.VTK.vtkFloatArray.New | ( | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkObject.
Reimplemented in Kitware.VTK.vtkTypeFloat32Array.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataArray.
Reimplemented in Kitware.VTK.vtkTypeFloat32Array.
static new vtkFloatArray Kitware.VTK.vtkFloatArray.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataArray.
Reimplemented in Kitware.VTK.vtkTypeFloat32Array.
void Kitware.VTK.vtkFloatArray.SetArray | ( | IntPtr | array, |
int | size, | ||
int | save | ||
) |
This method lets the user specify data to be held by the array. The array argument is a pointer to the data. size is the size of the array supplied by the user. Set save to 1 to keep the class from deleting the array when it cleans up or reallocates memory. The class uses the actual array provided; it does not copy the data from the suppled array.
void Kitware.VTK.vtkFloatArray.SetArray | ( | IntPtr | array, |
int | size, | ||
int | save, | ||
int | deleteMethod | ||
) |
This method lets the user specify data to be held by the array. The array argument is a pointer to the data. size is the size of the array supplied by the user. Set save to 1 to keep the class from deleting the array when it cleans up or reallocates memory. The class uses the actual array provided; it does not copy the data from the suppled array.
void Kitware.VTK.vtkFloatArray.SetNumberOfValues | ( | int | number | ) |
Specify the number of values for this object to hold. Does an allocation as well as setting the MaxId ivar. Used in conjunction with SetValue() method for fast insertion.
void Kitware.VTK.vtkFloatArray.SetTupleValue | ( | int | i, |
IntPtr | tuple | ||
) |
Set the tuple value at the ith location in the array.
void Kitware.VTK.vtkFloatArray.SetValue | ( | int | id, |
float | value | ||
) |
Set the data at a particular index. Does not do range checking. Make sure you use the method SetNumberOfValues() before inserting data.
static internal int Kitware.VTK.vtkFloatArray.vtkFloatArray_GetDataType_01 | ( | HandleRef | pThis | ) | [private] |
static internal float Kitware.VTK.vtkFloatArray.vtkFloatArray_GetDataTypeValueMax_02 | ( | ) | [private] |
static internal float Kitware.VTK.vtkFloatArray.vtkFloatArray_GetDataTypeValueMin_03 | ( | ) | [private] |
static internal IntPtr Kitware.VTK.vtkFloatArray.vtkFloatArray_GetPointer_04 | ( | HandleRef | pThis, |
int | id | ||
) | [private] |
static internal void Kitware.VTK.vtkFloatArray.vtkFloatArray_GetTupleValue_05 | ( | HandleRef | pThis, |
int | i, | ||
IntPtr | tuple | ||
) | [private] |
static internal float Kitware.VTK.vtkFloatArray.vtkFloatArray_GetValue_06 | ( | HandleRef | pThis, |
int | id | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkFloatArray.vtkFloatArray_GetValueRange_07 | ( | HandleRef | pThis, |
int | comp | ||
) | [private] |
static internal void Kitware.VTK.vtkFloatArray.vtkFloatArray_GetValueRange_08 | ( | HandleRef | pThis, |
IntPtr | range, | ||
int | comp | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkFloatArray.vtkFloatArray_GetValueRange_09 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkFloatArray.vtkFloatArray_GetValueRange_10 | ( | HandleRef | pThis, |
IntPtr | range | ||
) | [private] |
static internal int Kitware.VTK.vtkFloatArray.vtkFloatArray_InsertNextTupleValue_11 | ( | HandleRef | pThis, |
IntPtr | tuple | ||
) | [private] |
static internal int Kitware.VTK.vtkFloatArray.vtkFloatArray_InsertNextValue_12 | ( | HandleRef | pThis, |
float | f | ||
) | [private] |
static internal void Kitware.VTK.vtkFloatArray.vtkFloatArray_InsertTupleValue_13 | ( | HandleRef | pThis, |
int | i, | ||
IntPtr | tuple | ||
) | [private] |
static internal void Kitware.VTK.vtkFloatArray.vtkFloatArray_InsertValue_14 | ( | HandleRef | pThis, |
int | id, | ||
float | f | ||
) | [private] |
static internal int Kitware.VTK.vtkFloatArray.vtkFloatArray_IsA_15 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkFloatArray.vtkFloatArray_IsTypeOf_16 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkFloatArray.vtkFloatArray_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkFloatArray.vtkFloatArray_NewInstance_18 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkFloatArray.vtkFloatArray_SafeDownCast_19 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkFloatArray.vtkFloatArray_SetArray_20 | ( | HandleRef | pThis, |
IntPtr | array, | ||
int | size, | ||
int | save | ||
) | [private] |
static internal void Kitware.VTK.vtkFloatArray.vtkFloatArray_SetArray_21 | ( | HandleRef | pThis, |
IntPtr | array, | ||
int | size, | ||
int | save, | ||
int | deleteMethod | ||
) | [private] |
static internal void Kitware.VTK.vtkFloatArray.vtkFloatArray_SetNumberOfValues_22 | ( | HandleRef | pThis, |
int | number | ||
) | [private] |
static internal void Kitware.VTK.vtkFloatArray.vtkFloatArray_SetTupleValue_23 | ( | HandleRef | pThis, |
int | i, | ||
IntPtr | tuple | ||
) | [private] |
static internal void Kitware.VTK.vtkFloatArray.vtkFloatArray_SetValue_24 | ( | HandleRef | pThis, |
int | id, | ||
float | value | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkFloatArray.vtkFloatArray_WritePointer_25 | ( | HandleRef | pThis, |
int | id, | ||
int | number | ||
) | [private] |
IntPtr Kitware.VTK.vtkFloatArray.WritePointer | ( | int | id, |
int | number | ||
) |
Get the address of 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.
new readonly string Kitware.VTK.vtkFloatArray.MRClassNameKey = "13vtkFloatArray" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkDataArray.
Reimplemented in Kitware.VTK.vtkTypeFloat32Array.
new const string Kitware.VTK.vtkFloatArray.MRFullTypeName = "Kitware.VTK.vtkFloatArray" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkDataArray.
Reimplemented in Kitware.VTK.vtkTypeFloat32Array.