The sopathlist class is a container for pointers to sopath objects. as this class inherits sobaselist, referencing and dereferencing will default be done on the objects at append(), remove(), insert() etc.
#include <Inventor/lists/SoPathList.h>
Inherits SoBaseList.
SoPathList (void)
SoPathList (const int size)
SoPathList (const SoPathList &pl)
~SoPathList ()
void append (SoPath *const path)
SoPath * operator[] (const int i) const
SoPathList & operator= (const SoPathList &pl)
int findPath (const SoPath &path) const
void sort (void)
void uniquify (void)
The SoPathList class is a container for pointers to SoPath objects.
As this class inherits SoBaseList, referencing and dereferencing will default be done on the objects at append(), remove(), insert() etc.
Default constructor.
Constructor with a hint about the number of elements the list will hold.
See also:
SoBaseList::SoBaseList(const int)
Copy constructor.
Does a shallow copy of the SoPath pointer values, but updates reference count.
See also:
SoBaseList::SoBaseList(const SoBaseList &)
Destructor.
See also:
SoBaseList::~SoBaseList()
Append ptr to the list.
See also:
SoBaseList::append()
Return node pointer at index i.
See also:
SoBaseList::operator[]()
Shallow copy of contents of list pl to this list.
See also:
SoBaseList::operator=()
Find and return index of first item equal to path.
Sort paths in list according to how early they are run into when traversing the scene graph.
Removes identical paths and paths that go through the tail of another path.
Note that this method assumes the list to be in a sorted order.
See also:
sort()
Generated automatically by Doxygen for Coin from the source code.