VTK
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes
vtkGenericAttributeCollection Class Reference

a collection of attributes More...

#include <vtkGenericAttributeCollection.h>

Inheritance diagram for vtkGenericAttributeCollection:
Inheritance graph
[legend]
Collaboration diagram for vtkGenericAttributeCollection:
Collaboration graph
[legend]

List of all members.

Public Member Functions

int GetNumberOfAttributes ()
int GetNumberOfComponents ()
int GetNumberOfPointCenteredComponents ()
int GetMaxNumberOfComponents ()
unsigned long GetActualMemorySize ()
int IsEmpty ()
vtkGenericAttributeGetAttribute (int i)
int FindAttribute (const char *name)
int GetAttributeIndex (int i)
void InsertNextAttribute (vtkGenericAttribute *a)
void InsertAttribute (int i, vtkGenericAttribute *a)
void RemoveAttribute (int i)
void Reset ()
void DeepCopy (vtkGenericAttributeCollection *other)
void ShallowCopy (vtkGenericAttributeCollection *other)
virtual unsigned long int GetMTime ()
void SetActiveAttribute (int attribute, int component=0)
int HasAttribute (int size, int *attributes, int attribute)
virtual int GetActiveAttribute ()
virtual int GetActiveComponent ()
virtual int GetNumberOfAttributesToInterpolate ()
intGetAttributesToInterpolate ()
void SetAttributesToInterpolate (int size, int *attributes)
void SetAttributesToInterpolateToAll ()

Static Public Member Functions

static
vtkGenericAttributeCollection
New ()

Protected Member Functions

 vtkGenericAttributeCollection ()
virtual ~vtkGenericAttributeCollection ()
void ComputeNumbers ()

Protected Attributes

vtkGenericAttributeInternalVector * AttributeInternalVector
vtkIntInternalVector * AttributeIndices
int ActiveAttribute
int ActiveComponent
int NumberOfAttributesToInterpolate
int AttributesToInterpolate [10]
int NumberOfComponents
int NumberOfPointCenteredComponents
int MaxNumberOfComponents
unsigned long ActualMemorySize
vtkTimeStamp ComputeTime
typedef vtkObject Superclass
static int IsTypeOf (const char *type)
static
vtkGenericAttributeCollection
SafeDownCast (vtkObjectBase *o)
virtual int IsA (const char *type)
vtkGenericAttributeCollectionNewInstance () const
virtual void PrintSelf (ostream &os, vtkIndent indent)
virtual vtkObjectBaseNewInstanceInternal () const

Detailed Description

a collection of attributes

vtkGenericAttributeCollection is a class that collects attributes (represented by vtkGenericAttribute).

Tests:
vtkGenericAttributeCollection (Tests)

Definition at line 35 of file vtkGenericAttributeCollection.h.


Member Typedef Documentation

Standard type definition and print methods for a VTK class.

Reimplemented from vtkObject.

Definition at line 43 of file vtkGenericAttributeCollection.h.


Constructor & Destructor Documentation

Default constructor: empty collection.

Destructor.


Member Function Documentation

Create an empty collection.

Reimplemented from vtkObject.

static int vtkGenericAttributeCollection::IsTypeOf ( const char *  type) [static]

Standard type definition and print methods for a VTK class.

Reimplemented from vtkObject.

virtual int vtkGenericAttributeCollection::IsA ( const char *  type) [virtual]

Standard type definition and print methods for a VTK class.

Reimplemented from vtkObject.

Standard type definition and print methods for a VTK class.

Reimplemented from vtkObject.

virtual vtkObjectBase* vtkGenericAttributeCollection::NewInstanceInternal ( ) const [protected, virtual]

Standard type definition and print methods for a VTK class.

Reimplemented from vtkObject.

Standard type definition and print methods for a VTK class.

Reimplemented from vtkObject.

virtual void vtkGenericAttributeCollection::PrintSelf ( ostream &  os,
vtkIndent  indent 
) [virtual]

Standard type definition and print methods for a VTK class.

Reimplemented from vtkObject.

Return the number of attributes (e.g., instances of vtkGenericAttribute) in the collection.

Postcondition:
positive_result: result>=0

Return the number of components. This is the sum of all components found in all attributes.

Postcondition:
positive_result: result>=0

Return the number of components. This is the sum of all components found in all point centered attributes.

Postcondition:
positive_result: result>=0

Maximum number of components encountered among all attributes.

Postcondition:
positive_result: result>=0
valid_result: result<=GetNumberOfComponents()

Actual size of the data in kilobytes; only valid after the pipeline has updated. It is guaranteed to be greater than or equal to the memory required to represent the data.

Indicate whether the collection contains any attributes.

Postcondition:
definition: result==(GetNumberOfAttributes()==0)

Return a pointer to the ith instance of vtkGenericAttribute.

Precondition:
not_empty: !IsEmpty()
valid_i: i>=0 && i<GetNumberOfAttributes()
Postcondition:
result_exists: result!=0

Return the index of the attribute named `name'. Return the non-negative index if found. Return -1 otherwise.

Precondition:
name_exists: name!=0
Postcondition:
valid_result: (result==-1) || (result>=0) && (result<=GetNumberOfAttributes())

Return the index of the first component of attribute `i' in an array of format attrib0comp0 attrib0comp1 ... attrib4comp0 ...

Precondition:
valid_i: i>=0 && i<GetNumberOfAttributes()
is_point_centered: GetAttribute(i)->GetCentering()==vtkPointCentered

Add the attribute `a' to the end of the collection.

Precondition:
a_exists: a!=0
Postcondition:
more_items: GetNumberOfAttributes()==old GetNumberOfAttributes()+1
a_is_set: GetAttribute(GetNumberOfAttributes()-1)==a

Replace the attribute at index `i' by `a'.

Precondition:
not_empty: !IsEmpty()
a_exists: a!=0
valid_i: i>=0 && i<GetNumberOfAttributes()
Postcondition:
same_size: GetNumberOfAttributes()==old GetNumberOfAttributes()
item_is_set: GetAttribute(i)==a

Remove the attribute at `i'.

Precondition:
not_empty: !IsEmpty()
valid_i: i>=0 && i<GetNumberOfAttributes()
Postcondition:
fewer_items: GetNumberOfAttributes()==old GetNumberOfAttributes()-1

Remove all attributes.

Postcondition:
is_empty: GetNumberOfAttributes()==0

Copy, without reference counting, the other attribute array.

Precondition:
other_exists: other!=0
not_self: other!=this
Postcondition:
same_size: GetNumberOfAttributes()==other->GetNumberOfAttributes()

Copy, via reference counting, the other attribute array.

Precondition:
other_exists: other!=0
not_self: other!=this
Postcondition:
same_size: GetNumberOfAttributes()==other->GetNumberOfAttributes()
virtual unsigned long int vtkGenericAttributeCollection::GetMTime ( ) [virtual]

vtkAttributeCollection is a composite object and needs to check each member of its collection for modified time.

Reimplemented from vtkObject.

Index of the attribute to be processed (not necessarily scalar).

Precondition:
not_empty: !IsEmpty()
Postcondition:
valid_result: result>=0 && result<GetNumberOfAttributes()

Component of the active attribute to be processed. -1 means module.

Precondition:
not_empty: GetNumberOfAttributes()>0
Postcondition:
valid_result: result>=-1 && result<GetAttribute(GetActiveAttribute())->GetNumberOfComponents()
void vtkGenericAttributeCollection::SetActiveAttribute ( int  attribute,
int  component = 0 
)

Set the scalar attribute to be processed. -1 means module.

Precondition:
not_empty: !IsEmpty()
valid_attribute: attribute>=0 && attribute<GetNumberOfAttributes()
valid_component: component>=-1 && component<GetAttribute(attribute)->GetNumberOfComponents()
Postcondition:
is_set: GetActiveAttribute()==attribute && GetActiveComponent()==component

Number of attributes to interpolate.

Precondition:
not_empty: !IsEmpty()
Postcondition:
positive_result: result>=0

Indices of attributes to interpolate.

Precondition:
not_empty: !IsEmpty()
Postcondition:
valid_result: GetNumberOfAttributesToInterpolate()>0 implies result!=0
int vtkGenericAttributeCollection::HasAttribute ( int  size,
int attributes,
int  attribute 
)

Does the array `attributes' of size `size' have `attribute'?

Precondition:
positive_size: size>=0
valid_attributes: size>0 implies attributes!=0

Set the attributes to interpolate.

Precondition:
not_empty: !IsEmpty()
positive_size: size>=0
valid_attributes: size>0 implies attributes!=0
valid_attributes_contents: attributes!=0 implies !HasAttributes(size,attributes,GetActiveAttribute())
Postcondition:
is_set: (GetNumberOfAttributesToInterpolate()==size)&& (GetAttributesToInterpolate()==attributes)

Set the attributes to interpolate.

Precondition:
not_empty: !IsEmpty()
positive_size: size>=0
valid_attributes: size>0 implies attributes!=0
valid_attributes_contents: attributes!=0 implies !HasAttributes(size,attributes,GetActiveAttribute())
Postcondition:
is_set: (GetNumberOfAttributesToInterpolate()==size)&& (GetAttributesToInterpolate()==attributes)

Compute number of components, max number of components and actual memory size.


Member Data Documentation

vtkGenericAttributeInternalVector* vtkGenericAttributeCollection::AttributeInternalVector [protected]

STL vector for storing attributes

Definition at line 192 of file vtkGenericAttributeCollection.h.

vtkIntInternalVector* vtkGenericAttributeCollection::AttributeIndices [protected]

STL vector for storing index of point centered attributes

Definition at line 194 of file vtkGenericAttributeCollection.h.

Definition at line 196 of file vtkGenericAttributeCollection.h.

Definition at line 197 of file vtkGenericAttributeCollection.h.

Definition at line 198 of file vtkGenericAttributeCollection.h.

Definition at line 199 of file vtkGenericAttributeCollection.h.

Definition at line 201 of file vtkGenericAttributeCollection.h.

Definition at line 202 of file vtkGenericAttributeCollection.h.

Definition at line 203 of file vtkGenericAttributeCollection.h.

Definition at line 204 of file vtkGenericAttributeCollection.h.

Definition at line 205 of file vtkGenericAttributeCollection.h.


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