Public Member Functions |
| vtkTypeInt32Array (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly.
|
| vtkTypeInt32Array () |
| Undocumented Block
|
override int | IsA (string type) |
| Undocumented Block
|
new vtkTypeInt32Array | NewInstance () |
| Undocumented Block
|
| vtkIntArray (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly.
|
| vtkIntArray () |
| 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.
|
int | GetValue (int id) |
| Get the data at a particular index.
|
int[] | 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.
|
int[] | 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 (int 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, int f) |
| Insert data at a specified position in the array.
|
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, int 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.
|
| vtkDataArray (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly.
|
virtual void | CopyComponent (int j, vtkDataArray from, int fromComponent) |
| Copy a component from one data array into a component on this data array. This method copies the specified component ("fromComponent") from the specified data array ("from") to the specified component ("j") over all the tuples in this data array. This method can be used to extract a component (column) from one data array and paste that data into a component on this data array.
|
override int | CopyInformation (vtkInformation infoFrom, int deep) |
| Copy information instance. Arrays use information objects in a variety of ways. It is important to have flexibility in this regard because certain keys should not be coppied, while others must be. NOTE: Up to the implmeneter to make sure that keys not inteneded to be coppied are excluded here.
|
void | CreateDefaultLookupTable () |
| Create default lookup table. Generally used to create one when none is available.
|
override void | DeepCopy (vtkAbstractArray aa) |
| Deep copy of data. Copies data from different data arrays even if they are different types (using doubleing-point exchange).
|
virtual void | DeepCopy (vtkDataArray da) |
| Deep copy of data. Copies data from different data arrays even if they are different types (using doubleing-point exchange).
|
virtual void | FillComponent (int j, double c) |
| Fill a component of a data array with a specified value. This method sets the specified component to specified value for all tuples in the data array. This methods can be used to initialize or reinitialize a single component of a multi-component array.
|
override uint | GetActualMemorySize () |
| Return the memory in kilobytes consumed by this data array. 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. The information returned is valid only after the pipeline has been updated.
|
virtual double | GetComponent (int i, int j) |
| Return the data component at the ith tuple and jth component location. Note that i is less than NumberOfTuples and j is less than NumberOfComponents.
|
virtual void | GetData (int tupleMin, int tupleMax, int compMin, int compMax, vtkDoubleArray data) |
| Get the data as a double array in the range (tupleMin,tupleMax) and (compMin, compMax). The resulting double array consists of all data in the tuple range specified and only the component range specified. This process typically requires casting the data from native form into doubleing point values. This method is provided as a convenience for data exchange, and is not very fast.
|
double | GetDataTypeMax () |
| These methods return the Min and Max possible range of the native data type. For example if a vtkScalars consists of unsigned char data these will return (0,255).
|
double | GetDataTypeMin () |
| These methods return the Min and Max possible range of the native data type. For example if a vtkScalars consists of unsigned char data these will return (0,255).
|
void | GetDataTypeRange (IntPtr range) |
| These methods return the Min and Max possible range of the native data type. For example if a vtkScalars consists of unsigned char data these will return (0,255).
|
override int | GetElementComponentSize () |
| Return the size, in bytes, of the lowest-level element of an array. For vtkDataArray and subclasses this is the size of the data type.
|
virtual vtkLookupTable | GetLookupTable () |
| Set/get the lookup table associated with this scalar data, if any.
|
virtual double | GetMaxNorm () |
| Return the maximum norm for the tuples. Note that the max. is computed everytime GetMaxNorm is called.
|
void | GetRange (IntPtr range, int comp) |
| Return the range of the array values for the given component. Range is copied into the array provided. If comp is equal to -1, it returns the range of the magnitude (if the number of components is equal to 1 it still returns the range of component 0).
|
double[] | GetRange (int comp) |
| Return the range of the array values for the given component. Range is copied into the array provided. If comp is equal to -1, it returns the range of the magnitude (if the number of components is equal to 1 it still returns the range of component 0).
|
double[] | GetRange () |
| Return the range of the array values for the 0th component. Range is copied into the array provided.
|
void | GetRange (IntPtr range) |
| Return the range of the array values for the 0th component. Range is copied into the array provided.
|
virtual IntPtr | GetTuple (int i) |
| Get the data tuple at ith location. Return it as a pointer to an array. Note: this method is not thread-safe, and the pointer is only valid as long as another method invocation to a vtk object is not performed.
|
virtual void | GetTuple (int i, IntPtr tuple) |
| Get the data tuple at ith location by filling in a user-provided array, Make sure that your array is large enough to hold the NumberOfComponents amount of data being returned.
|
double | GetTuple1 (int i) |
| These methods are included as convenience for the wrappers. GetTuple() and SetTuple() which return/take arrays can not be used from wrapped languages. These methods can be used instead.
|
double[] | GetTuple2 (int i) |
| These methods are included as convenience for the wrappers. GetTuple() and SetTuple() which return/take arrays can not be used from wrapped languages. These methods can be used instead.
|
double[] | GetTuple3 (int i) |
| These methods are included as convenience for the wrappers. GetTuple() and SetTuple() which return/take arrays can not be used from wrapped languages. These methods can be used instead.
|
double[] | GetTuple4 (int i) |
| These methods are included as convenience for the wrappers. GetTuple() and SetTuple() which return/take arrays can not be used from wrapped languages. These methods can be used instead.
|
double[] | GetTuple9 (int i) |
| These methods are included as convenience for the wrappers. GetTuple() and SetTuple() which return/take arrays can not be used from wrapped languages. These methods can be used instead.
|
override void | GetTuples (vtkIdList ptIds, vtkAbstractArray output) |
| Given a list of point ids, return an array of tuples. You must insure that the output array has been previously allocated with enough space to hold the data.
|
override void | GetTuples (int p1, int p2, vtkAbstractArray output) |
| Get the tuples for the range of points ids specified (i.e., p1->p2 inclusive). You must insure that the output array has been previously allocated with enough space to hold the data.
|
virtual void | InsertComponent (int i, int j, double c) |
| Insert the data component at ith tuple and jth component location. Note that memory allocation is performed as necessary to hold the data.
|
override int | InsertNextTuple (int j, vtkAbstractArray source) |
| Insert the jth tuple in the source array, at the end in this array. Note that memory allocation is performed as necessary to hold the data. Returns the location at which the data was inserted. This pure virtual function is redeclared here to avoid declaration hidden warnings.
|
virtual int | InsertNextTuple (IntPtr tuple) |
| Insert the data tuple at the end of the array and return the location at which the data was inserted. Memory is allocated as necessary to hold the data.
|
void | InsertNextTuple1 (double value) |
| These methods are included as convenience for the wrappers. InsertTuple() which takes arrays can not be used from wrapped languages. These methods can be used instead.
|
void | InsertNextTuple2 (double val0, double val1) |
| These methods are included as convenience for the wrappers. InsertTuple() which takes arrays can not be used from wrapped languages. These methods can be used instead.
|
void | InsertNextTuple3 (double val0, double val1, double val2) |
| These methods are included as convenience for the wrappers. InsertTuple() which takes arrays can not be used from wrapped languages. These methods can be used instead.
|
void | InsertNextTuple4 (double val0, double val1, double val2, double val3) |
| These methods are included as convenience for the wrappers. InsertTuple() which takes arrays can not be used from wrapped languages. These methods can be used instead.
|
void | InsertNextTuple9 (double val0, double val1, double val2, double val3, double val4, double val5, double val6, double val7, double val8) |
| These methods are included as convenience for the wrappers. InsertTuple() which takes arrays can not be used from wrapped languages. These methods can be used instead.
|
override void | InsertTuple (int i, int j, vtkAbstractArray source) |
| Insert the jth tuple in the source array, at ith location in this array. Note that memory allocation is performed as necessary to hold the data. This pure virtual function is redeclared here to avoid declaration hidden warnings.
|
virtual void | InsertTuple (int i, IntPtr tuple) |
| Insert the data tuple at ith location. Note that memory allocation is performed as necessary to hold the data.
|
void | InsertTuple1 (int i, double value) |
| These methods are included as convenience for the wrappers. InsertTuple() which takes arrays can not be used from wrapped languages. These methods can be used instead.
|
void | InsertTuple2 (int i, double val0, double val1) |
| These methods are included as convenience for the wrappers. InsertTuple() which takes arrays can not be used from wrapped languages. These methods can be used instead.
|
void | InsertTuple3 (int i, double val0, double val1, double val2) |
| These methods are included as convenience for the wrappers. InsertTuple() which takes arrays can not be used from wrapped languages. These methods can be used instead.
|
void | InsertTuple4 (int i, double val0, double val1, double val2, double val3) |
| These methods are included as convenience for the wrappers. InsertTuple() which takes arrays can not be used from wrapped languages. These methods can be used instead.
|
void | InsertTuple9 (int i, double val0, double val1, double val2, double val3, double val4, double val5, double val6, double val7, double val8) |
| These methods are included as convenience for the wrappers. InsertTuple() which takes arrays can not be used from wrapped languages. These methods can be used instead.
|
override void | InterpolateTuple (int i, vtkIdList ptIndices, vtkAbstractArray source, IntPtr weights) |
| Set the ith tuple in this array as the interpolated tuple value, given the ptIndices in the source array and associated interpolation weights. This method assumes that the two arrays are of the same type and strcuture.
|
override void | InterpolateTuple (int i, int id1, vtkAbstractArray source1, int id2, vtkAbstractArray source2, double t) |
| Description Insert the ith tuple in this array as interpolated from the two values, p1 and p2, and an interpolation factor, t. The interpolation factor ranges from (0,1), with t=0 located at p1. This method assumes that the three arrays are of the same type. p1 is value at index id1 in source1, while, p2 is value at index id2 in source2.
|
override int | IsNumeric () |
| This method is here to make backward compatibility easier. It must return true if and only if an array contains numeric data. All vtkDataArray subclasses contain numeric data, hence this method always returns 1(true).
|
virtual void | RemoveFirstTuple () |
| These methods remove tuples from the data array. They shift data and resize array, so the data array is still valid after this operation. Note, this operation is fairly slow.
|
virtual void | RemoveLastTuple () |
| These methods remove tuples from the data array. They shift data and resize array, so the data array is still valid after this operation. Note, this operation is fairly slow.
|
virtual void | RemoveTuple (int id) |
| These methods remove tuples from the data array. They shift data and resize array, so the data array is still valid after this operation. Note, this operation is fairly slow.
|
virtual void | SetComponent (int i, int j, double c) |
| Set the data component at the ith tuple and jth component location. Note that i is less than NumberOfTuples and j is less than NumberOfComponents. Make sure enough memory has been allocated (use SetNumberOfTuples() and SetNumberOfComponents()).
|
void | SetLookupTable (vtkLookupTable lut) |
| Set/get the lookup table associated with this scalar data, if any.
|
override void | SetTuple (int i, int j, vtkAbstractArray source) |
| Set the tuple at the ith location using the jth tuple in the source array. This method assumes that the two arrays have the same type and structure. Note that range checking and memory allocation is not performed; use in conjunction with SetNumberOfTuples() to allocate space.
|
virtual void | SetTuple (int i, IntPtr tuple) |
| Set the data tuple at ith location. Note that range checking or memory allocation is not performed; use this method in conjunction with SetNumberOfTuples() to allocate space.
|
void | SetTuple1 (int i, double value) |
| These methods are included as convenience for the wrappers. GetTuple() and SetTuple() which return/take arrays can not be used from wrapped languages. These methods can be used instead.
|
void | SetTuple2 (int i, double val0, double val1) |
| These methods are included as convenience for the wrappers. GetTuple() and SetTuple() which return/take arrays can not be used from wrapped languages. These methods can be used instead.
|
void | SetTuple3 (int i, double val0, double val1, double val2) |
| These methods are included as convenience for the wrappers. GetTuple() and SetTuple() which return/take arrays can not be used from wrapped languages. These methods can be used instead.
|
void | SetTuple4 (int i, double val0, double val1, double val2, double val3) |
| These methods are included as convenience for the wrappers. GetTuple() and SetTuple() which return/take arrays can not be used from wrapped languages. These methods can be used instead.
|
void | SetTuple9 (int i, double val0, double val1, double val2, double val3, double val4, double val5, double val6, double val7, double val8) |
| These methods are included as convenience for the wrappers. GetTuple() and SetTuple() which return/take arrays can not be used from wrapped languages. These methods can be used instead.
|
virtual IntPtr | WriteVoidPointer (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.
|
| vtkAbstractArray (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly.
|
virtual int | Allocate (int sz, int ext) |
| Allocate memory for this array. Delete old storage only if necessary. Note that ext is no longer used.
|
virtual void | ClearLookup () |
| Delete the associated fast lookup data structure on this array, if it exists. The lookup will be rebuilt on the next call to a lookup function.
|
int | CopyComponentNames (vtkAbstractArray da) |
| Copies the component names from the inputed array to the current array make sure that the current array has the same number of components as the input array
|
virtual void | DataChanged () |
| Tell the array explicitly that the data has changed. This is only necessary to call when you modify the array contents without using the array's API (i.e. you retrieve a pointer to the data and modify the array contents). You need to call this so that the fast lookup will know to rebuild itself. Otherwise, the lookup functions will give incorrect results.
|
virtual void | ExportToVoidPointer (IntPtr arg0) |
| This method copies the array data to the void pointer specified by the user. It is up to the user to allocate enough memory for the void pointer.
|
string | GetComponentName (int component) |
| Get the component name for a given component. Note: will return the actual string that is stored
|
virtual int | GetDataSize () |
| Returns the size of the data in DataTypeSize units. Thus, the number of bytes for the data can be computed by GetDataSize() * GetDataTypeSize(). Non-contiguous or variable- size arrays need to override this method.
|
virtual string | GetDataTypeAsString () |
| Get the name of a data type as a string.
|
virtual int | GetDataTypeSize () |
| Return the size of the underlying data type. For a bit, 0 is returned. For string 0 is returned. Arrays with variable length components return 0.
|
vtkInformation | GetInformation () |
| Get an information object that can be used to annotate the array. This will always return an instance of vtkInformation, if one is not currently associated with the array it will be created.
|
int | GetMaxId () |
| What is the maximum id currently in the array.
|
virtual string | GetName () |
| Set/get array's name
|
int | GetNumberOfComponents () |
| Set/Get the dimention (n) of the components. Must be >= 1. Make sure that this is set before allocation.
|
virtual int | GetNumberOfComponentsMaxValue () |
| Set/Get the dimention (n) of the components. Must be >= 1. Make sure that this is set before allocation.
|
virtual int | GetNumberOfComponentsMinValue () |
| Set/Get the dimention (n) of the components. Must be >= 1. Make sure that this is set before allocation.
|
int | GetNumberOfTuples () |
| Get the number of tuples (a component group) in the array.
|
int | GetSize () |
| Return the size of the data.
|
virtual IntPtr | GetVoidPointer (int id) |
| Return a void pointer. For image pipeline interface and other special pointer manipulation.
|
bool | HasAComponentName () |
| Returns if any component has had a name assigned
|
bool | HasInformation () |
| Inquire if this array has an instance of vtkInformation already associated with it.
|
virtual void | Initialize () |
| Release storage and reset array to initial state.
|
virtual vtkArrayIterator | NewIterator () |
| Subclasses must override this method and provide the right kind of templated vtkArrayIteratorTemplate.
|
void | Reset () |
| Reset to an empty state, without freeing any memory.
|
virtual int | Resize (int numTuples) |
| Resize the array while conserving the data. Returns 1 if resizing succeeded and 0 otherwise.
|
void | SetComponentName (int component, string name) |
| Set the name for a component. Must be >= 1.
|
virtual void | SetName (string _arg) |
| Set/get array's name
|
virtual void | SetNumberOfComponents (int _arg) |
| Set/Get the dimention (n) of the components. Must be >= 1. Make sure that this is set before allocation.
|
virtual void | SetNumberOfTuples (int number) |
| Set the number of tuples (a component group) in the array. Note that this may allocate space depending on the number of components. Also note that if allocation is performed no copy is performed so existing data will be lost (if data conservation is sought, one may use the Resize method instead).
|
virtual void | SetVoidArray (IntPtr arg0, int arg1, int arg2) |
| 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 supplied array.
|
virtual void | Squeeze () |
| Free any unnecessary memory. Resize object to just fit data requirement. Reclaims extra memory.
|
| vtkObject (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly.
|
| vtkObject () |
| Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
|
uint | AddObserver (uint arg0, vtkCommand arg1, float priority) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
uint | AddObserver (string arg0, vtkCommand arg1, float priority) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
virtual void | DebugOff () |
| Turn debugging output off.
|
virtual void | DebugOn () |
| Turn debugging output on.
|
vtkCommand | GetCommand (uint tag) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
byte | GetDebug () |
| Get the value of the debug flag.
|
virtual uint | GetMTime () |
| Return this object's modified time.
|
int | HasObserver (uint arg0, vtkCommand arg1) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | HasObserver (string arg0, vtkCommand arg1) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | HasObserver (uint arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | HasObserver (string arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | InvokeEvent (uint arg0, IntPtr callData) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | InvokeEvent (string arg0, IntPtr callData) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | InvokeEvent (uint arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
int | InvokeEvent (string arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
virtual void | Modified () |
| Update the modification time for this object. Many filters rely on the modification time to determine if they need to recompute their data. The modification time is a unique monotonically increasing unsigned long integer.
|
void | RemoveAllObservers () |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | RemoveObserver (vtkCommand arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | RemoveObserver (uint tag) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | RemoveObservers (uint arg0, vtkCommand arg1) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | RemoveObservers (string arg0, vtkCommand arg1) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | RemoveObservers (uint arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | RemoveObservers (string arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed.
|
void | SetDebug (byte debugFlag) |
| Set the value of the debug flag. A non-zero value turns debugging on.
|
override string | ToString () |
| Returns the result of calling vtkObject::Print as a C# string.
|
delegate void | vtkObjectEventHandler (vtkObject sender, vtkObjectEventArgs e) |
| Generic signature for all vtkObject events.
|
void | RemoveAllHandlersForAllEvents () |
| Call RemoveAllHandlers on each non-null vtkObjectEventRelay. TODO: This method needs to get called by the generated Dispose. Make that happen...
|
| vtkObjectBase (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly.
|
| vtkObjectBase () |
| Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
|
virtual void | Register (vtkObjectBase o) |
| Increase the reference count (mark as used by another object).
|
virtual void | FastDelete () |
| Delete a reference to this object. This version will not invoke garbage collection and can potentially leak the object if it is part of a reference loop. Use this method only when it is known that the object has another reference and would not be collected if a full garbage collection check were done.
|
string | GetClassName () |
| Return the class name as a string. This method is defined in all subclasses of vtkObjectBase with the vtkTypeMacro found in vtkSetGet.h.
|
int | GetReferenceCount () |
| Return the current reference count of this object.
|
void | SetReferenceCount (int arg0) |
| Sets the reference count. (This is very dangerous, use with care.)
|