|
virtual int | IsA (const char *type) |
| Return 1 if this class is the same type of (or a subclass of) the named class. More...
|
|
vtkFloatArray * | NewInstance () const |
|
void | PrintSelf (ostream &os, vtkIndent indent) override |
| Methods invoked by print to print information about the object including superclasses. More...
|
|
vtkDataArray * | NewInstance () const |
|
int | IsNumeric () override |
| This method is here to make backward compatibility easier. More...
|
|
int | GetElementComponentSize () override |
| Return the size, in bytes, of the lowest-level element of an array. More...
|
|
void | InsertTuple (vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source) override |
| Insert the tuple at srcTupleIdx in the source array into this array at dstTupleIdx. More...
|
|
vtkIdType | InsertNextTuple (vtkIdType srcTupleIdx, vtkAbstractArray *source) override |
| Insert the tuple from srcTupleIdx in the source array at the end of this array. More...
|
|
void | InsertTuples (vtkIdList *dstIds, vtkIdList *srcIds, vtkAbstractArray *source) override |
| Copy the tuples indexed in srcIds from the source array to the tuple locations indexed by dstIds in this array. More...
|
|
void | InsertTuples (vtkIdType dstStart, vtkIdType n, vtkIdType srcStart, vtkAbstractArray *source) override |
| Copy n consecutive tuples starting at srcStart from the source array to this array, starting at the dstStart location. More...
|
|
void | GetTuples (vtkIdList *tupleIds, vtkAbstractArray *output) override |
| Given a list of tuple ids, return an array of tuples. More...
|
|
void | GetTuples (vtkIdType p1, vtkIdType p2, vtkAbstractArray *output) override |
| Get the tuples for the range of tuple ids specified (i.e., p1->p2 inclusive). More...
|
|
void | InterpolateTuple (vtkIdType dstTupleIdx, vtkIdList *ptIndices, vtkAbstractArray *source, double *weights) override |
| Set the tuple at dstTupleIdx in this array to the interpolated tuple value, given the ptIndices in the source array and associated interpolation weights. More...
|
|
void | InterpolateTuple (vtkIdType dstTupleIdx, vtkIdType srcTupleIdx1, vtkAbstractArray *source1, vtkIdType srcTupleIdx2, vtkAbstractArray *source2, double t) override |
| Insert the tuple at dstTupleIdx in this array to the tuple interpolated from the two tuple indices, srcTupleIdx1 and srcTupleIdx2, and an interpolation factor, t. More...
|
|
virtual double * | GetTuple (vtkIdType tupleIdx)=0 |
| Get the data tuple at tupleIdx. More...
|
|
virtual void | GetTuple (vtkIdType tupleIdx, double *tuple)=0 |
| Get the data tuple at tupleIdx by filling in a user-provided array, Make sure that your array is large enough to hold the NumberOfComponents amount of data being returned. More...
|
|
void | SetTuple (vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source) override |
| Set the tuple at dstTupleIdx in this array to the tuple at srcTupleIdx in the source array. More...
|
|
virtual double | GetComponent (vtkIdType tupleIdx, int compIdx) |
| Return the data component at the location specified by tupleIdx and compIdx. More...
|
|
virtual void | SetComponent (vtkIdType tupleIdx, int compIdx, double value) |
| Set the data component at the location specified by tupleIdx and compIdx to value. More...
|
|
virtual void | InsertComponent (vtkIdType tupleIdx, int compIdx, double value) |
| Insert value at the location specified by tupleIdx and compIdx. More...
|
|
virtual void | GetData (vtkIdType tupleMin, vtkIdType tupleMax, int compMin, int compMax, vtkDoubleArray *data) |
| Get the data as a double array in the range (tupleMin,tupleMax) and (compMin, compMax). More...
|
|
virtual void | ShallowCopy (vtkDataArray *other) |
| Create a shallow copy of other into this, if possible. More...
|
|
virtual void | FillComponent (int compIdx, double value) |
| Fill a component of a data array with a specified value. More...
|
|
virtual void | CopyComponent (int dstComponent, vtkDataArray *src, int srcComponent) |
| Copy a component from one data array into a component on this data array. More...
|
|
virtual void * | WriteVoidPointer (vtkIdType valueIdx, vtkIdType numValues)=0 |
| Get the address of a particular data index. More...
|
|
unsigned long | GetActualMemorySize () override |
| Return the memory in kibibytes (1024 bytes) consumed by this data array. More...
|
|
void | CreateDefaultLookupTable () |
| Create default lookup table. More...
|
|
void | GetRange (double range[2], int comp) |
| The range of the data array values for the given component will be returned in the provided range array argument. More...
|
|
double * | GetRange () |
| Return the range of the data array. More...
|
|
void | GetRange (double range[2]) |
| The the range of the data array values will be returned in the provided range array argument. More...
|
|
virtual double | GetMaxNorm () |
| Return the maximum norm for the tuples. More...
|
|
int | CopyInformation (vtkInformation *infoFrom, int deep=1) override |
| Copy information instance. More...
|
|
int | GetArrayType () override |
| Method for type-checking in FastDownCast implementations. More...
|
|
double | GetTuple1 (vtkIdType tupleIdx) |
| These methods are included as convenience for the wrappers. More...
|
|
double * | GetTuple2 (vtkIdType tupleIdx) |
| These methods are included as convenience for the wrappers. More...
|
|
double * | GetTuple3 (vtkIdType tupleIdx) |
| These methods are included as convenience for the wrappers. More...
|
|
double * | GetTuple4 (vtkIdType tupleIdx) |
| These methods are included as convenience for the wrappers. More...
|
|
double * | GetTuple6 (vtkIdType tupleIdx) |
| These methods are included as convenience for the wrappers. More...
|
|
double * | GetTuple9 (vtkIdType tupleIdx) |
| These methods are included as convenience for the wrappers. More...
|
|
virtual void | SetTuple (vtkIdType tupleIdx, const float *tuple) |
| Set the data tuple at tupleIdx. More...
|
|
virtual void | SetTuple (vtkIdType tupleIdx, const double *tuple) |
| Set the data tuple at tupleIdx. More...
|
|
void | SetTuple1 (vtkIdType tupleIdx, double value) |
| These methods are included as convenience for the wrappers. More...
|
|
void | SetTuple2 (vtkIdType tupleIdx, double val0, double val1) |
| These methods are included as convenience for the wrappers. More...
|
|
void | SetTuple3 (vtkIdType tupleIdx, double val0, double val1, double val2) |
| These methods are included as convenience for the wrappers. More...
|
|
void | SetTuple4 (vtkIdType tupleIdx, double val0, double val1, double val2, double val3) |
| These methods are included as convenience for the wrappers. More...
|
|
void | SetTuple6 (vtkIdType tupleIdx, double val0, double val1, double val2, double val3, double val4, double val5) |
| These methods are included as convenience for the wrappers. More...
|
|
void | SetTuple9 (vtkIdType tupleIdx, 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. More...
|
|
virtual void | InsertTuple (vtkIdType tupleIdx, const float *tuple)=0 |
| Insert the data tuple at tupleIdx. More...
|
|
virtual void | InsertTuple (vtkIdType tupleIdx, const double *tuple)=0 |
| Insert the data tuple at tupleIdx. More...
|
|
void | InsertTuple1 (vtkIdType tupleIdx, double value) |
| These methods are included as convenience for the wrappers. More...
|
|
void | InsertTuple2 (vtkIdType tupleIdx, double val0, double val1) |
| These methods are included as convenience for the wrappers. More...
|
|
void | InsertTuple3 (vtkIdType tupleIdx, double val0, double val1, double val2) |
| These methods are included as convenience for the wrappers. More...
|
|
void | InsertTuple4 (vtkIdType tupleIdx, double val0, double val1, double val2, double val3) |
| These methods are included as convenience for the wrappers. More...
|
|
void | InsertTuple6 (vtkIdType tupleIdx, double val0, double val1, double val2, double val3, double val4, double val5) |
| These methods are included as convenience for the wrappers. More...
|
|
void | InsertTuple9 (vtkIdType tupleIdx, 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. More...
|
|
virtual vtkIdType | InsertNextTuple (const float *tuple)=0 |
| Insert the data tuple at the end of the array and return the tuple index at which the data was inserted. More...
|
|
virtual vtkIdType | InsertNextTuple (const double *tuple)=0 |
| Insert the data tuple at the end of the array and return the tuple index at which the data was inserted. More...
|
|
void | InsertNextTuple1 (double value) |
| These methods are included as convenience for the wrappers. More...
|
|
void | InsertNextTuple2 (double val0, double val1) |
| These methods are included as convenience for the wrappers. More...
|
|
void | InsertNextTuple3 (double val0, double val1, double val2) |
| These methods are included as convenience for the wrappers. More...
|
|
void | InsertNextTuple4 (double val0, double val1, double val2, double val3) |
| These methods are included as convenience for the wrappers. More...
|
|
void | InsertNextTuple6 (double val0, double val1, double val2, double val3, double val4, double val5) |
| These methods are included as convenience for the wrappers. More...
|
|
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. More...
|
|
virtual void | RemoveTuple (vtkIdType tupleIdx)=0 |
| These methods remove tuples from the data array. More...
|
|
virtual void | RemoveFirstTuple () |
| These methods remove tuples from the data array. More...
|
|
virtual void | RemoveLastTuple () |
| These methods remove tuples from the data array. More...
|
|
void | DeepCopy (vtkAbstractArray *aa) override |
| Deep copy of data. More...
|
|
virtual void | DeepCopy (vtkDataArray *da) |
| Deep copy of data. More...
|
|
void | SetLookupTable (vtkLookupTable *lut) |
| Set/get the lookup table associated with this scalar data, if any. More...
|
|
virtual vtkLookupTable * | GetLookupTable () |
| Set/get the lookup table associated with this scalar data, if any. More...
|
|
double * | GetRange (int comp) |
| Return the range of the data array values for the given component. More...
|
|
void | GetDataTypeRange (double range[2]) |
| These methods return the Min and Max possible range of the native data type. More...
|
|
double | GetDataTypeMin () |
| These methods return the Min and Max possible range of the native data type. More...
|
|
double | GetDataTypeMax () |
| These methods return the Min and Max possible range of the native data type. More...
|
|
vtkAbstractArray * | NewInstance () const |
|
virtual int | Allocate (vtkIdType numValues, vtkIdType ext=1000)=0 |
| Allocate memory for this array. More...
|
|
virtual void | Initialize ()=0 |
| Release storage and reset array to initial state. More...
|
|
virtual int | GetDataType ()=0 |
| Return the underlying data type. More...
|
|
void | SetComponentName (vtkIdType component, const char *name) |
| Set the name for a component. More...
|
|
const char * | GetComponentName (vtkIdType component) |
| Get the component name for a given component. More...
|
|
bool | HasAComponentName () |
| Returns if any component has had a name assigned. More...
|
|
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. More...
|
|
virtual void | SetNumberOfTuples (vtkIdType numTuples)=0 |
| Set the number of tuples (a component group) in the array. More...
|
|
virtual void | SetNumberOfValues (vtkIdType numValues) |
| Specify the number of values (tuples * components) for this object to hold. More...
|
|
vtkIdType | GetNumberOfTuples () |
| Get the number of complete tuples (a component group) in the array. More...
|
|
vtkIdType | GetNumberOfValues () const |
| Get the total number of values in the array. More...
|
|
virtual bool | HasStandardMemoryLayout () |
| Returns true if this array uses the standard memory layout defined in the VTK user guide, e.g. More...
|
|
virtual void * | GetVoidPointer (vtkIdType valueIdx)=0 |
| Return a void pointer. More...
|
|
virtual void | Squeeze ()=0 |
| Free any unnecessary memory. More...
|
|
virtual int | Resize (vtkIdType numTuples)=0 |
| Resize the array to the requested number of tuples and preserve data. More...
|
|
vtkIdType | GetSize () |
| Return the size of the data. More...
|
|
vtkIdType | GetMaxId () |
| What is the maximum id currently in the array. More...
|
|
virtual void | ExportToVoidPointer (void *out_ptr) |
| This method copies the array data to the void pointer specified by the user. More...
|
|
virtual const char * | GetDataTypeAsString (void) |
| Get the name of a data type as a string. More...
|
|
virtual VTK_NEWINSTANCE vtkArrayIterator * | NewIterator ()=0 |
| Subclasses must override this method and provide the right kind of templated vtkArrayIteratorTemplate. More...
|
|
virtual vtkIdType | GetDataSize () |
| Returns the size of the data in DataTypeSize units. More...
|
|
virtual vtkVariant | GetVariantValue (vtkIdType valueIdx) |
| Retrieve value from the array as a variant. More...
|
|
virtual void | InsertVariantValue (vtkIdType valueIdx, vtkVariant value)=0 |
| Insert a value into the array from a variant. More...
|
|
virtual void | SetVariantValue (vtkIdType valueIdx, vtkVariant value)=0 |
| Set a value in the array from a variant. More...
|
|
virtual void | DataChanged ()=0 |
| Tell the array explicitly that the data has changed. More...
|
|
virtual void | ClearLookup ()=0 |
| Delete the associated fast lookup data structure on this array, if it exists. More...
|
|
virtual void | GetProminentComponentValues (int comp, vtkVariantArray *values, double uncertainty=1.e-6, double minimumProminence=1.e-3) |
| Populate the given vtkVariantArray with a set of distinct values taken on by the requested component (or, when passed -1, by the tuples as a whole). More...
|
|
vtkInformation * | GetInformation () |
| Get an information object that can be used to annotate the array. More...
|
|
bool | HasInformation () |
| Inquire if this array has an instance of vtkInformation already associated with it. More...
|
|
virtual void | SetNumberOfComponents (int) |
| Set/Get the dimension (n) of the components. More...
|
|
int | GetNumberOfComponents () |
| Set/Get the dimension (n) of the components. More...
|
|
void | Reset () |
| Reset to an empty state, without freeing any memory. More...
|
|
virtual void | SetVoidArray (void *vtkNotUsed(array), vtkIdType vtkNotUsed(size), int vtkNotUsed(save))=0 |
| This method lets the user specify data to be held by the array. More...
|
|
virtual void | SetVoidArray (void *array, vtkIdType size, int save, int vtkNotUsed(deleteMethod)) |
| This method lets the user specify data to be held by the array. More...
|
|
virtual void | SetName (const char *) |
| Set/get array's name. More...
|
|
virtual char * | GetName () |
| Set/get array's name. More...
|
|
virtual vtkIdType | LookupValue (vtkVariant value)=0 |
| Return the value indices where a specific value appears. More...
|
|
virtual void | LookupValue (vtkVariant value, vtkIdList *valueIds)=0 |
| Return the value indices where a specific value appears. More...
|
|
virtual unsigned int | GetMaxDiscreteValues () |
| Get/Set the maximum number of prominent values this array may contain before it is considered continuous. More...
|
|
virtual void | SetMaxDiscreteValues (unsigned int) |
| Get/Set the maximum number of prominent values this array may contain before it is considered continuous. More...
|
|
virtual int | GetDataTypeSize ()=0 |
| Return the size of the underlying data type. More...
|
|
| vtkBaseTypeMacro (vtkObject, vtkObjectBase) |
|
virtual void | DebugOn () |
| Turn debugging output on. More...
|
|
virtual void | DebugOff () |
| Turn debugging output off. More...
|
|
bool | GetDebug () |
| Get the value of the debug flag. More...
|
|
void | SetDebug (bool debugFlag) |
| Set the value of the debug flag. More...
|
|
virtual void | Modified () |
| Update the modification time for this object. More...
|
|
virtual vtkMTimeType | GetMTime () |
| Return this object's modified time. More...
|
|
void | PrintSelf (ostream &os, vtkIndent indent) override |
| Methods invoked by print to print information about the object including superclasses. More...
|
|
void | RemoveObserver (unsigned long tag) |
|
void | RemoveObservers (unsigned long event) |
|
void | RemoveObservers (const char *event) |
|
void | RemoveAllObservers () |
|
int | HasObserver (unsigned long event) |
|
int | HasObserver (const char *event) |
|
int | InvokeEvent (unsigned long event) |
|
int | InvokeEvent (const char *event) |
|
unsigned long | AddObserver (unsigned long event, vtkCommand *, float priority=0.0f) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
unsigned long | AddObserver (const char *event, vtkCommand *, float priority=0.0f) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
vtkCommand * | GetCommand (unsigned long tag) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
void | RemoveObserver (vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
void | RemoveObservers (unsigned long event, vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
void | RemoveObservers (const char *event, vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
int | HasObserver (unsigned long event, vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
int | HasObserver (const char *event, vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
|
|
template<class U , class T > |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f) |
| Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
|
|
template<class U , class T > |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
| Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
|
|
template<class U , class T > |
unsigned long | AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
| Allow user to set the AbortFlagOn() with the return value of the callback method. More...
|
|
int | InvokeEvent (unsigned long event, void *callData) |
| This method invokes an event and return whether the event was aborted or not. More...
|
|
int | InvokeEvent (const char *event, void *callData) |
| This method invokes an event and return whether the event was aborted or not. More...
|
|
const char * | GetClassName () const |
| Return the class name as a string. More...
|
|
virtual void | Delete () |
| Delete a VTK object. More...
|
|
virtual void | FastDelete () |
| Delete a reference to this object. More...
|
|
void | InitializeObjectBase () |
|
void | Print (ostream &os) |
| Print an object to an ostream. More...
|
|
virtual void | Register (vtkObjectBase *o) |
| Increase the reference count (mark as used by another object). More...
|
|
virtual void | UnRegister (vtkObjectBase *o) |
| Decrease the reference count (release by another object). More...
|
|
int | GetReferenceCount () |
| Return the current reference count of this object. More...
|
|
void | SetReferenceCount (int) |
| Sets the reference count. More...
|
|
void | PrintRevisions (ostream &) |
| Legacy. More...
|
|
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
| Methods invoked by print to print information about the object including superclasses. More...
|
|
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
| Methods invoked by print to print information about the object including superclasses. More...
|
|
|
static int | IsTypeOf (const char *type) |
|
static vtkFloatArray * | SafeDownCast (vtkObjectBase *o) |
|
static vtkFloatArray * | New () |
|
static vtkFloatArray * | FastDownCast (vtkAbstractArray *source) |
| A faster alternative to SafeDownCast for downcasting vtkAbstractArrays. More...
|
|
static float | GetDataTypeValueMin () |
| Get the minimum data value in its native type. More...
|
|
static float | GetDataTypeValueMax () |
| Get the maximum data value in its native type. More...
|
|
static int | IsTypeOf (const char *type) |
|
static vtkDataArray * | SafeDownCast (vtkObjectBase *o) |
|
static vtkDataArray * | FastDownCast (vtkAbstractArray *source) |
| Perform a fast, safe cast from a vtkAbstractArray to a vtkDataArray. More...
|
|
static VTK_NEWINSTANCE vtkDataArray * | CreateDataArray (int dataType) |
| Creates an array for dataType where dataType is one of VTK_BIT, VTK_CHAR, VTK_SIGNED_CHAR, VTK_UNSIGNED_CHAR, VTK_SHORT, VTK_UNSIGNED_SHORT, VTK_INT, VTK_UNSIGNED_INT, VTK_LONG, VTK_UNSIGNED_LONG, VTK_DOUBLE, VTK_DOUBLE, VTK_ID_TYPE. More...
|
|
static vtkInformationDoubleVectorKey * | COMPONENT_RANGE () |
| This key is used to hold tight bounds on the range of one component over all tuples of the array. More...
|
|
static vtkInformationDoubleVectorKey * | L2_NORM_RANGE () |
| This key is used to hold tight bounds on the $L_2$ norm of tuples in the array. More...
|
|
static vtkInformationStringKey * | UNITS_LABEL () |
| A human-readable string indicating the units for the array data. More...
|
|
static void | GetDataTypeRange (int type, double range[2]) |
| These methods return the Min and Max possible range of the native data type. More...
|
|
static double | GetDataTypeMin (int type) |
| These methods return the Min and Max possible range of the native data type. More...
|
|
static double | GetDataTypeMax (int type) |
| These methods return the Min and Max possible range of the native data type. More...
|
|
static int | IsTypeOf (const char *type) |
|
static vtkAbstractArray * | SafeDownCast (vtkObjectBase *o) |
|
static VTK_NEWINSTANCE vtkAbstractArray * | CreateArray (int dataType) |
| Creates an array for dataType where dataType is one of VTK_BIT, VTK_CHAR, VTK_UNSIGNED_CHAR, VTK_SHORT, VTK_UNSIGNED_SHORT, VTK_INT, VTK_UNSIGNED_INT, VTK_LONG, VTK_UNSIGNED_LONG, VTK_DOUBLE, VTK_DOUBLE, VTK_ID_TYPE, VTK_STRING. More...
|
|
static vtkInformationIntegerKey * | GUI_HIDE () |
| This key is a hint to end user interface that this array is internal and should not be shown to the end user. More...
|
|
static vtkInformationInformationVectorKey * | PER_COMPONENT () |
| This key is used to hold a vector of COMPONENT_VALUES (and, for vtkDataArray subclasses, COMPONENT_RANGE) keys – one for each component of the array. More...
|
|
static vtkInformationVariantVectorKey * | DISCRETE_VALUES () |
| A key used to hold discrete values taken on either by the tuples of the array (when present in this->GetInformation()) or individual components (when present in one entry of the PER_COMPONENT() information vector). More...
|
|
static vtkInformationDoubleVectorKey * | DISCRETE_VALUE_SAMPLE_PARAMETERS () |
| A key used to hold conditions under which cached discrete values were generated; the value is a 2-vector of doubles. More...
|
|
static int | GetDataTypeSize (int type) |
| Return the size of the underlying data type. More...
|
|
static vtkObject * | New () |
| Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
|
|
static void | BreakOnError () |
| This method is called when vtkErrorMacro executes. More...
|
|
static void | SetGlobalWarningDisplay (int val) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
static void | GlobalWarningDisplayOn () |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
static void | GlobalWarningDisplayOff () |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
static int | GetGlobalWarningDisplay () |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
static vtkTypeBool | IsTypeOf (const char *name) |
| Return 1 if this class type is the same type of (or a subclass of) the named class. More...
|
|
static vtkObjectBase * | New () |
| Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
|
|