VTK
|
Implementation of vtkGenericAttribute. More...
#include <vtkBridgeAttribute.h>
Implementation of vtkGenericAttribute.
It is just an example that show how to implement the Generic. It is also used for testing and evaluating the Generic.
Definition at line 37 of file vtkBridgeAttribute.h.
Reimplemented from vtkGenericAttribute.
Definition at line 41 of file vtkBridgeAttribute.h.
vtkBridgeAttribute::vtkBridgeAttribute | ( | ) | [protected] |
Default constructor: empty attribute, not valid
virtual vtkBridgeAttribute::~vtkBridgeAttribute | ( | ) | [protected, virtual] |
Destructor.
static vtkBridgeAttribute* vtkBridgeAttribute::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkObject.
static int vtkBridgeAttribute::IsTypeOf | ( | const char * | name | ) | [static] |
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 vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkGenericAttribute.
virtual int vtkBridgeAttribute::IsA | ( | const char * | name | ) | [virtual] |
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 vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkGenericAttribute.
static vtkBridgeAttribute* vtkBridgeAttribute::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkGenericAttribute.
virtual vtkObjectBase* vtkBridgeAttribute::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkGenericAttribute.
Reimplemented from vtkGenericAttribute.
void vtkBridgeAttribute::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
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 vtkGenericAttribute.
const char* vtkBridgeAttribute::GetName | ( | ) | [virtual] |
Name of the attribute. (e.g. "velocity")
Implements vtkGenericAttribute.
int vtkBridgeAttribute::GetNumberOfComponents | ( | ) | [virtual] |
Dimension of the attribute. (1 for scalar, 3 for velocity)
Implements vtkGenericAttribute.
int vtkBridgeAttribute::GetCentering | ( | ) | [virtual] |
Is the attribute centered either on points, cells or boundaries?
Implements vtkGenericAttribute.
int vtkBridgeAttribute::GetType | ( | ) | [virtual] |
Type of the attribute: scalar, vector, normal, texture coordinate, tensor
Implements vtkGenericAttribute.
int vtkBridgeAttribute::GetComponentType | ( | ) | [virtual] |
Type of the components of the attribute: int, float, double
Implements vtkGenericAttribute.
vtkIdType vtkBridgeAttribute::GetSize | ( | ) | [virtual] |
unsigned long vtkBridgeAttribute::GetActualMemorySize | ( | ) | [virtual] |
Size in kilobytes taken by the attribute.
Implements vtkGenericAttribute.
double* vtkBridgeAttribute::GetRange | ( | int | component | ) | [virtual] |
Range of the attribute component `component'. It returns double, even if GetType()==VTK_INT. NOT THREAD SAFE
Implements vtkGenericAttribute.
void vtkBridgeAttribute::GetRange | ( | int | component, |
double | range[2] | ||
) | [virtual] |
Range of the attribute component `component'. THREAD SAFE
Implements vtkGenericAttribute.
double vtkBridgeAttribute::GetMaxNorm | ( | ) | [virtual] |
Return the maximum euclidean norm for the tuples.
Implements vtkGenericAttribute.
virtual double* vtkBridgeAttribute::GetTuple | ( | vtkGenericAdaptorCell * | c | ) | [virtual] |
Attribute at all points of cell `c'.
Implements vtkGenericAttribute.
virtual void vtkBridgeAttribute::GetTuple | ( | vtkGenericAdaptorCell * | c, |
double * | tuple | ||
) | [virtual] |
Put attribute at all points of cell `c' in `tuple'.
Implements vtkGenericAttribute.
double* vtkBridgeAttribute::GetTuple | ( | vtkGenericCellIterator * | c | ) | [virtual] |
Attribute at all points of cell `c'.
Implements vtkGenericAttribute.
void vtkBridgeAttribute::GetTuple | ( | vtkGenericCellIterator * | c, |
double * | tuple | ||
) | [virtual] |
Put attribute at all points of cell `c' in `tuple'.
Implements vtkGenericAttribute.
double* vtkBridgeAttribute::GetTuple | ( | vtkGenericPointIterator * | p | ) | [virtual] |
Value of the attribute at position `p'.
Implements vtkGenericAttribute.
void vtkBridgeAttribute::GetTuple | ( | vtkGenericPointIterator * | p, |
double * | tuple | ||
) | [virtual] |
Put the value of the attribute at position `p' into `tuple'.
Implements vtkGenericAttribute.
void vtkBridgeAttribute::GetComponent | ( | int | i, |
vtkGenericCellIterator * | c, | ||
double * | values | ||
) | [virtual] |
Put component `i' of the attribute at all points of cell `c' in `values'.
Implements vtkGenericAttribute.
double vtkBridgeAttribute::GetComponent | ( | int | i, |
vtkGenericPointIterator * | p | ||
) | [virtual] |
Value of the component `i' of the attribute at position `p'.
Implements vtkGenericAttribute.
void vtkBridgeAttribute::DeepCopy | ( | vtkGenericAttribute * | other | ) | [virtual] |
Recursive duplication of `other' in `this'.
Implements vtkGenericAttribute.
void vtkBridgeAttribute::ShallowCopy | ( | vtkGenericAttribute * | other | ) | [virtual] |
Update `this' using fields of `other'.
Implements vtkGenericAttribute.
void vtkBridgeAttribute::InitWithPointData | ( | vtkPointData * | d, |
int | i | ||
) |
Set the current attribute to be centered on points with attribute `i' of `d'.
void vtkBridgeAttribute::InitWithCellData | ( | vtkCellData * | d, |
int | i | ||
) |
Set the current attribute to be centered on cells with attribute `i' of `d'.
void vtkBridgeAttribute::AllocateInternalTuple | ( | int | size | ) | [protected] |
If size>InternalTupleCapacity, allocate enough memory.
friend class vtkBridgeCell [friend] |
Definition at line 178 of file vtkBridgeAttribute.h.
vtkPointData* vtkBridgeAttribute::Pd [protected] |
Definition at line 181 of file vtkBridgeAttribute.h.
vtkCellData* vtkBridgeAttribute::Cd [protected] |
Definition at line 182 of file vtkBridgeAttribute.h.
vtkDataSetAttributes* vtkBridgeAttribute::Data [protected] |
Definition at line 183 of file vtkBridgeAttribute.h.
int vtkBridgeAttribute::AttributeNumber [protected] |
Definition at line 184 of file vtkBridgeAttribute.h.
double* vtkBridgeAttribute::InternalTuple [protected] |
Definition at line 186 of file vtkBridgeAttribute.h.
int vtkBridgeAttribute::InternalTupleCapacity [protected] |
Definition at line 187 of file vtkBridgeAttribute.h.