Coin
4.0.3
Coin3D core library
|
The SoPickedPointList class is a container for pointers to SoPickedPoint objects. More...
#include <Inventor/lists/SoPickedPointList.h>
Additional Inherited Members | |
Protected Member Functions inherited from SbPList | |
void | expand (const int size) |
int | getArraySize (void) const |
The SoPickedPointList class is a container for pointers to SoPickedPoint objects.
This list class will delete the picked points when destructed/truncated, or when a picked point in the list is replaced by another picked point. The caller is responsible for allocating the picked points passed to the list, but should not deallocate them since this will be handled by the list.
|
inline |
Default constructor.
|
inline |
This constructor initializes the internal allocated size for the list to sizehint. Note that the list will still initially contain zero items.
SoPickedPointList::SoPickedPointList | ( | const SoPickedPointList & | l | ) |
Copy constructor. Will copy picked points, not just pointers.
|
inline |
Append item to the end of the list.
Automatically allocates more items internally if needed.
Overloaded from parent to accept an SoPickedPoint pointer argument.
|
inline |
Insert item at index insertbefore.
insertbefore should not be larger than the current number of items in the list.
Overloaded from parent to accept an SoPickedPoint pointer argument.
|
inline |
Returns element at index.
Will automatically expand the size of the internal array if index is outside the current bounds of the list. The values of any additional pointers are then set to NULL
.
Overloaded from parent to return an SoPickedPoint pointer.
void SoPickedPointList::set | ( | const int | idx, |
SoPickedPoint * | pp ) |
Index operator to set element at index. Does not expand array bounds if index is outside the list.
Overloaded from parent to destruct the replaced item.
Shorten the list to contain length elements, removing items from index length and onwards.
If fit is non-zero, will also shrink the internal size of the allocated array. Note that this is much less efficient than not re-fitting the array size.
Overloaded from parent to delete truncated items.