initial commit before ownership transfer
This commit is contained in:
21
code/lukas/TurnObservation.h
Executable file
21
code/lukas/TurnObservation.h
Executable file
@@ -0,0 +1,21 @@
|
||||
#ifndef TURNOBSERVATION_H
|
||||
#define TURNOBSERVATION_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
||||
|
||||
struct TurnObservation {
|
||||
float ts;
|
||||
float delta_heading; //measured change of heading direction (given by Gyroskop)
|
||||
float delta_motion; //measured change of motion direction (given by PCA)
|
||||
|
||||
TurnObservation() {;}
|
||||
TurnObservation(const float delta_heading, const float motion_angle) : delta_heading(delta_heading), delta_motion(delta_motion) {;}
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
#endif // TURNOBSERVATION_H
|
||||
Reference in New Issue
Block a user