emc_system
odom.h
Go to the documentation of this file.
1 #ifndef EMC_SYSTEM_ODOM_H_
2 #define EMC_SYSTEM_ODOM_H_
3 
4 namespace emc
5 {
6 
7 // ----------------------------------------------------------------------------------------------------
8 
10 {
11  double x; // m
12  double y; // m
13  double a; // rad
14  double timestamp;
15 };
16 
17 } // end namespace emc
18 
19 #endif
emc::OdometryData::x
double x
Definition: odom.h:11
emc::OdometryData::a
double a
Definition: odom.h:13
emc::OdometryData
Definition: odom.h:9
emc
Definition: bumper.h:4
emc::OdometryData::y
double y
Definition: odom.h:12
emc::OdometryData::timestamp
double timestamp
Definition: odom.h:14