This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
YASMIN/nav/CurEst.h
2018-07-11 19:04:42 +02:00

17 lines
209 B
C

#ifndef CUREST_H
#define CUREST_H
#include <Indoor/geo/Point3.h>
#include <Indoor/geo/Heading.h>
struct CurEst {
Point3 pos_m;
Heading head;
CurEst() : pos_m(0,0,0), head(0) {;}
};
#endif // CUREST_H