#include <local_retriever.h>
Inheritance diagram for NLPACS::CLocalRetriever::CLocalPosition:
Nevrax France
Definition at line 140 of file local_retriever.h.
Public Member Functions | |
CLocalPosition (sint32 surface=-1, const NLMISC::CVector &estimation=NLMISC::CVector::Null) | |
Constructor. | |
void | setKeepZ (const ULocalPosition &other) |
Data Fields | |
NLMISC::CVector | Estimation |
The best position estimation of the point snapped on the surface. This is a CLocalRetriever local axis position. | |
sint32 | Surface |
The id of the surface corresponding to the local position. |
|
Constructor.
Definition at line 144 of file local_retriever.h. References sint32.
00145 { 00146 Surface=surface; 00147 Estimation=estimation; 00148 } |
|
Definition at line 54 of file u_global_position.h. References NLPACS::ULocalPosition::Estimation, NLMISC::CVector::set(), NLPACS::ULocalPosition::Surface, NLMISC::CVector::x, NLMISC::CVector::y, and NLMISC::CVector::z. Referenced by NLPACS::UGlobalPosition::setKeepZ().
00055 { 00056 Surface = other.Surface; 00057 Estimation.set(other.Estimation.x, 00058 other.Estimation.y, 00059 Estimation.z); 00060 } |
|
|