#include <HxPointZList.h>
Public Methods | |
HxPointZList & | operator<< (const HxPointZ &) |
Add point to the list. More... | |
void | eraseAll () |
Remove all points from the list. More... |
Specialization of list from STL.
|
Add point to the list.
00097 { 00098 push_back(s); 00099 return *this; 00100 } |
|
Remove all points from the list.
00104 { 00105 erase(begin(), end()); 00106 } |