MeVisLab Toolbox Reference
|
Base object class PointList managing a list of points. More...
#include <mlPointList.h>
Public Member Functions | |
PointList () | |
Constructor creating an empty list. | |
~PointList () override | |
Destructor. | |
MLssize_t | getNum () const |
returns the number of contained points | |
void | getValue (MLssize_t index, Vector3 &vec) const |
get point at given index | |
void | getValue (MLssize_t index, float &x, float &y, float &z) const |
get point at given index | |
void | addValue (const Vector3 &vec) |
add point at end of list | |
void | setValue (MLssize_t index, const Vector3 &vec) |
set value at index | |
void | removeValue (MLssize_t index=-1) |
remove point from list, if index is -1, last element is removed | |
void | clear () |
clear all entries | |
void | print (const char *txt) |
debug print | |
Public Member Functions inherited from ml::Base | |
Base () | |
Constructor. | |
virtual | ~Base () |
Destructor. | |
virtual Base * | deepCopy () const |
Set addStateToTree version number that can be accessed via getAddStateVersion() | |
bool | isOfAllowedType (const std::vector< const RuntimeType * > &types) const |
Check if this object's type is equal to or derived from one of the types given in the argument. | |
virtual bool | isRefCountedBase () const |
Returns if the instance is derived from RefCountedBase. | |
virtual std::string | detailString () const |
Return a string describing this object. | |
virtual bool | implementsPersistence (PersistenceInterface) const |
Override this method to declare which persistence interfaces are implemented by your derived class. | |
virtual std::string | persistentState () const |
Returns a string describing the object's internal state. | |
virtual void | setPersistentState (const std::string &state) |
Restores the object's internal state from a string that had been previously generated using persistentState() . | |
virtual void | addStateToTree (TreeNode *) const |
Attaches the object state as children of the given parent node. | |
virtual void | readStateFromTree (TreeNode *) |
Reads the object state from the children of the given parent node. | |
virtual void | writeTo (AbstractPersistenceOutputStream *) const |
Write the objects state to the data stream object. | |
virtual void | readFrom (AbstractPersistenceInputStream *, int) |
Read the objects state from the data stream object. | |
Additional Inherited Members | |
Public Types inherited from ml::Base | |
enum | PersistenceInterface { PersistenceByString , PersistenceByTreeNode , PersistenceByStream } |
This enum describes the different persistence interfaces available. More... | |
Base object class PointList managing a list of points.
Definition at line 29 of file mlPointList.h.
|
inline |
Constructor creating an empty list.
Definition at line 33 of file mlPointList.h.
|
inlineoverride |
Destructor.
Definition at line 36 of file mlPointList.h.
void ml::PointList::clear | ( | ) |
clear all entries
MLssize_t ml::PointList::getNum | ( | ) | const |
returns the number of contained points
get point at given index
remove point from list, if index is -1, last element is removed