#include <vtkGenericAttribute.h>
Inheritance diagram for vtkGenericAttribute:
vtkGenericAttribute is an abstract class that defines an API for attribute data. Attribute data is data associated with the topology or geometry of a dataset (i.e., points, cells, etc.). vtkGenericAttribute is part of the adaptor framework (see GenericFiltering/README.html).
vtkGenericAttribute provides a more general interface to attribute data than its counterpart vtkDataArray (which assumes a linear, contiguous array). It adopts an iterator interface, and allows attributes to be associated with points, edges, faces, or edges.
Definition at line 48 of file vtkGenericAttribute.h.
Public Types | |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
virtual void | PrintSelf (ostream &os, vtkIndent indent) |
virtual const char * | GetName ()=0 |
virtual int | GetNumberOfComponents ()=0 |
virtual int | GetCentering ()=0 |
virtual int | GetType ()=0 |
virtual int | GetComponentType ()=0 |
virtual vtkIdType | GetSize ()=0 |
virtual unsigned long | GetActualMemorySize ()=0 |
virtual double | GetMaxNorm ()=0 |
virtual double * | GetTuple (vtkGenericAdaptorCell *c)=0 |
virtual void | GetTuple (vtkGenericAdaptorCell *c, double *tuple)=0 |
virtual double * | GetTuple (vtkGenericCellIterator *c)=0 |
virtual void | GetTuple (vtkGenericCellIterator *c, double *tuple)=0 |
virtual double * | GetTuple (vtkGenericPointIterator *p)=0 |
virtual void | GetTuple (vtkGenericPointIterator *p, double *tuple)=0 |
virtual void | GetComponent (int i, vtkGenericCellIterator *c, double *values)=0 |
virtual double | GetComponent (int i, vtkGenericPointIterator *p)=0 |
virtual void | DeepCopy (vtkGenericAttribute *other)=0 |
virtual void | ShallowCopy (vtkGenericAttribute *other)=0 |
virtual double * | GetRange (int component=0)=0 |
virtual void | GetRange (int component, double range[2])=0 |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkGenericAttribute * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkGenericAttribute () | |
~vtkGenericAttribute () |
|
Reimplemented from vtkObject. Reimplemented in vtkBridgeAttribute. Definition at line 51 of file vtkGenericAttribute.h. |
|
|
|
|
|
Reimplemented from vtkObject. Reimplemented in vtkBridgeAttribute. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkObject. Reimplemented in vtkBridgeAttribute. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkObject. Reimplemented in vtkBridgeAttribute. |
|
Reimplemented from vtkObject. Reimplemented in vtkBridgeAttribute. |
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from vtkObject. Reimplemented in vtkBridgeAttribute. |
|
Name of the attribute. (e.g. "velocity")
Implemented in vtkBridgeAttribute. |
|
Dimension of the attribute. (1 for scalar, 3 for velocity)
Implemented in vtkBridgeAttribute. |
|
Is the attribute centered either on points, cells or boundaries?
Implemented in vtkBridgeAttribute. |
|
Type of the attribute: scalar, vector, normal, texture coordinate, tensor
Implemented in vtkBridgeAttribute. |
|
Type of the components of the attribute: int, float, double
Implemented in vtkBridgeAttribute. |
|
Number of tuples.
Implemented in vtkBridgeAttribute. |
|
Size in kilobytes taken by the attribute. Implemented in vtkBridgeAttribute. |
|
Range of the attribute component `component'. If `component'==-1, it returns the range of the magnitude (euclidean norm). It returns double, even if GetType()==VTK_INT. NOT THREAD SAFE
Implemented in vtkBridgeAttribute. |
|
Range of the attribute component `component'. If `component'==-1, it returns the range of the magnitude (euclidean norm). THREAD SAFE
Implemented in vtkBridgeAttribute. |
|
Return the maximum euclidean norm for the tuples.
Implemented in vtkBridgeAttribute. |
|
Attribute at all points of cell `c'.
Implemented in vtkBridgeAttribute. |
|
Put attribute at all points of cell `c' in `tuple'.
Implemented in vtkBridgeAttribute. |
|
Attribute at all points of cell `c'.
Implemented in vtkBridgeAttribute. |
|
Put attribute at all points of cell `c' in `tuple'.
Implemented in vtkBridgeAttribute. |
|
Value of the attribute at position `p'.
Implemented in vtkBridgeAttribute. |
|
Put the value of the attribute at position `p' into `tuple'.
Implemented in vtkBridgeAttribute. |
|
Put component `i' of the attribute at all points of cell `c' in `values'.
Implemented in vtkBridgeAttribute. |
|
Value of the component `i' of the attribute at position `p'.
Implemented in vtkBridgeAttribute. |
|
Recursive duplication of `other' in `this'.
Implemented in vtkBridgeAttribute. |
|
Update `this' using fields of `other'.
Implemented in vtkBridgeAttribute. |