#include <local_retriever.h>
Nevrax France
Definition at line 72 of file local_retriever.h.
Public Member Functions | |
CTip () | |
void | serial (NLMISC::IStream &f) |
Serialises the CTip. | |
void | translate (const NLMISC::CVector &translation) |
Translates the CTip by the translation vector. | |
Data Fields | |
std::vector< CChainTip > | Chains |
NLMISC::CVector | Point |
The position of the tip.x. |
|
Definition at line 96 of file local_retriever.h.
00096 : Point(NLMISC::CVector::Null) {} |
|
Serialises the CTip.
Definition at line 106 of file local_retriever.h. References Chains, NLMISC::IStream::serial(), and NLMISC::IStream::serialCont().
00107 { 00108 f.serial(Point); 00109 f.serialCont(Chains); 00110 } |
|
Translates the CTip by the translation vector.
Definition at line 113 of file local_retriever.h.
00114 { 00115 Point += translation; 00116 } |
|
Definition at line 102 of file local_retriever.h. Referenced by serial(). |
|
The position of the tip.x.
Definition at line 99 of file local_retriever.h. |