#include <vtkGenericAttributeCollection.h>
vtkGenericAttributeCollection is a class that collects attributes (represented by vtkGenericAttribute).
Definition at line 34 of file vtkGenericAttributeCollection.h.
Standard type definition and print methods for a VTK class.
Reimplemented from vtkObject.
Definition at line 42 of file vtkGenericAttributeCollection.h.
vtkGenericAttributeCollection::vtkGenericAttributeCollection | ( | ) | [protected] |
Default constructor: empty collection.
virtual vtkGenericAttributeCollection::~vtkGenericAttributeCollection | ( | ) | [protected, virtual] |
Destructor.
static vtkGenericAttributeCollection* vtkGenericAttributeCollection::New | ( | ) | [static] |
Create an empty collection.
Reimplemented from vtkObject.
virtual const char* vtkGenericAttributeCollection::GetClassName | ( | ) | [virtual] |
Standard type definition and print methods for a VTK class.
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.
static vtkGenericAttributeCollection* vtkGenericAttributeCollection::SafeDownCast | ( | vtkObject * | o | ) | [static] |
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.
int vtkGenericAttributeCollection::GetNumberOfAttributes | ( | ) |
Return the number of attributes (e.g., instances of vtkGenericAttribute) in the collection.
int vtkGenericAttributeCollection::GetNumberOfComponents | ( | ) |
Return the number of components. This is the sum of all components found in all attributes.
int vtkGenericAttributeCollection::GetNumberOfPointCenteredComponents | ( | ) |
Return the number of components. This is the sum of all components found in all point centered attributes.
int vtkGenericAttributeCollection::GetMaxNumberOfComponents | ( | ) |
Maximum number of components encountered among all attributes.
valid_result: result<=GetNumberOfComponents()
unsigned long vtkGenericAttributeCollection::GetActualMemorySize | ( | ) |
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.
int vtkGenericAttributeCollection::IsEmpty | ( | ) |
Indicate whether the collection contains any attributes.
vtkGenericAttribute* vtkGenericAttributeCollection::GetAttribute | ( | int | i | ) |
Return a pointer to the ith instance of vtkGenericAttribute.
valid_i: i>=0 && i<GetNumberOfAttributes()
int vtkGenericAttributeCollection::FindAttribute | ( | const char * | name | ) |
Return the index of the attribute named `name'. Return the non-negative index if found. Return -1 otherwise.
int vtkGenericAttributeCollection::GetAttributeIndex | ( | int | i | ) |
Return the index of the first component of attribute `i' in an array of format attrib0comp0 attrib0comp1 ... attrib4comp0 ...
is_point_centered: GetAttribute(i)->GetCentering()==vtkPointCentered
void vtkGenericAttributeCollection::InsertNextAttribute | ( | vtkGenericAttribute * | a | ) |
Add the attribute `a' to the end of the collection.
a_is_set: GetAttribute(GetNumberOfAttributes()-1)==a
void vtkGenericAttributeCollection::InsertAttribute | ( | int | i, | |
vtkGenericAttribute * | a | |||
) |
Replace the attribute at index `i' by `a'.
a_exists: a!=0
valid_i: i>=0 && i<GetNumberOfAttributes()
item_is_set: GetAttribute(i)==a
void vtkGenericAttributeCollection::RemoveAttribute | ( | int | i | ) |
Remove the attribute at `i'.
valid_i: i>=0 && i<GetNumberOfAttributes()
void vtkGenericAttributeCollection::Reset | ( | ) |
Remove all attributes.
void vtkGenericAttributeCollection::DeepCopy | ( | vtkGenericAttributeCollection * | other | ) |
Copy, without reference counting, the other attribute array.
not_self: other!=this
void vtkGenericAttributeCollection::ShallowCopy | ( | vtkGenericAttributeCollection * | other | ) |
Copy, via reference counting, the other attribute array.
not_self: other!=this
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.
virtual int vtkGenericAttributeCollection::GetActiveAttribute | ( | ) | [virtual] |
Index of the attribute to be processed (not necessarily scalar).
virtual int vtkGenericAttributeCollection::GetActiveComponent | ( | ) | [virtual] |
Component of the active attribute to be processed. -1 means module.
void vtkGenericAttributeCollection::SetActiveAttribute | ( | int | attribute, | |
int | component = 0 | |||
) |
Set the scalar attribute to be processed. -1 means module.
valid_attribute: attribute>=0 && attribute<GetNumberOfAttributes()
valid_component: component>=-1 && component<GetAttribute(attribute)->GetNumberOfComponents()
virtual int vtkGenericAttributeCollection::GetNumberOfAttributesToInterpolate | ( | ) | [virtual] |
Number of attributes to interpolate.
int* vtkGenericAttributeCollection::GetAttributesToInterpolate | ( | ) |
Indices of attributes to interpolate.
int vtkGenericAttributeCollection::HasAttribute | ( | int | size, | |
int * | attributes, | |||
int | attribute | |||
) |
Does the array `attributes' of size `size' have `attribute'?
valid_attributes: size>0 implies attributes!=0
void vtkGenericAttributeCollection::SetAttributesToInterpolate | ( | int | size, | |
int * | attributes | |||
) |
Set the attributes to interpolate.
positive_size: size>=0
valid_attributes: size>0 implies attributes!=0
valid_attributes_contents: attributes!=0 implies !HasAttributes(size,attributes,GetActiveAttribute())
void vtkGenericAttributeCollection::SetAttributesToInterpolateToAll | ( | ) |
Set the attributes to interpolate.
positive_size: size>=0
valid_attributes: size>0 implies attributes!=0
valid_attributes_contents: attributes!=0 implies !HasAttributes(size,attributes,GetActiveAttribute())
void vtkGenericAttributeCollection::ComputeNumbers | ( | ) | [protected] |
Compute number of components, max number of components and actual memory size.
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 attributes
Definition at line 195 of file vtkGenericAttributeCollection.h.
int vtkGenericAttributeCollection::ActiveAttribute [protected] |
Definition at line 198 of file vtkGenericAttributeCollection.h.
int vtkGenericAttributeCollection::ActiveComponent [protected] |
Definition at line 199 of file vtkGenericAttributeCollection.h.
int vtkGenericAttributeCollection::NumberOfAttributesToInterpolate [protected] |
Definition at line 200 of file vtkGenericAttributeCollection.h.
int vtkGenericAttributeCollection::AttributesToInterpolate[10] [protected] |
Definition at line 201 of file vtkGenericAttributeCollection.h.
int vtkGenericAttributeCollection::NumberOfComponents [protected] |
Definition at line 203 of file vtkGenericAttributeCollection.h.
int vtkGenericAttributeCollection::NumberOfPointCenteredComponents [protected] |
Definition at line 204 of file vtkGenericAttributeCollection.h.
int vtkGenericAttributeCollection::MaxNumberOfComponents [protected] |
Definition at line 205 of file vtkGenericAttributeCollection.h.
unsigned long vtkGenericAttributeCollection::ActualMemorySize [protected] |
Definition at line 206 of file vtkGenericAttributeCollection.h.
Definition at line 207 of file vtkGenericAttributeCollection.h.