#include <vtkIdList.h>
Inheritance diagram for vtkIdList:
Public Methods | |
void | Initialize () |
int | Allocate (const int sz, const int strategy=0) |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
int | GetNumberOfIds () |
int | GetId (const int i) |
void | SetNumberOfIds (const int number) |
void | SetId (const int i, const int id) |
void | InsertId (const int i, const int id) |
int | InsertNextId (const int id) |
int | InsertUniqueId (const int id) |
int * | GetPointer (const int i) |
int * | WritePointer (const int i, const int number) |
void | Reset () |
void | Squeeze () |
void | DeepCopy (vtkIdList *ids) |
void | DeleteId (int id) |
int | IsId (int id) |
void | IntersectWith (vtkIdList &otherIds) |
Static Public Methods | |
vtkIdList * | New () |
int | IsTypeOf (const char *type) |
vtkIdList * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkIdList () | |
~vtkIdList () | |
vtkIdList (const vtkIdList &) | |
void | operator= (const vtkIdList &) |
int * | Resize (const int sz) |
Protected Attributes | |
int | NumberOfIds |
int | Size |
int * | Ids |
vtkIdList is used to represent and pass data id's between objects. vtkIdList may represent any type of integer id, but usually represents point and cell ids.
|
Copy an id list by explicitly copying the internal array. |
|
Delete specified id from list. Will remove all occurrences of id in list. |
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkObject. |
|
Return the id at location i. |
|
Return the number of id's in the list. |
|
Get a pointer to a particular data index. |
|
Set the id at location i. Does range checking and allocates memory as necessary. |
|
Add the id specified to the end of the list. Range checking is performed. |
|
If id is not already in list, insert it and return location in list. Otherwise return just location in list. |
|
Intersect this list with another vtkIdList. Updates current list according to result of intersection operation. |
|
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 vtkObject. |
|
Return -1 if id specified is not contained in the list; otherwise return the position in the list. |
|
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 vtkObject. |
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkObject. |
|
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. |
|
Reset to an empty state. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkObject. |
|
Set the id at location i. Doesn't do range checking so it's a bit faster than InsertId. Make sure you use SetNumberOfIds() to allocate memory prior to using SetId(). |
|
Specify the number of ids for this object to hold. Does an allocation as well as setting the number of ids. |
|
Free any unused memory. |
|
Get a pointer to a particular data index. Make sure data is allocated for the number of items requested. Set MaxId according to the number of data values requested. |