#include <u_global_position.h>
Inheritance diagram for NLPACS::ULocalPosition:
Nevrax France
Definition at line 44 of file u_global_position.h.
Public Member Functions | |
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. |
|
Definition at line 54 of file u_global_position.h. References Estimation, NLMISC::CVector::set(), 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 } |
|
|