- worked on about everything - grid walker using plugable modules - wifi models - new distributions - worked on geometric data-structures - added typesafe timestamps - worked on grid-building - added sensor-classes - added sensor analysis (step-detection, turn-detection) - offline data reader - many test-cases
17 lines
268 B
C
17 lines
268 B
C
#ifndef WALKSTATEHEADING_H
|
|
#define WALKSTATEHEADING_H
|
|
|
|
#include "../../../../geo/Heading.h"
|
|
|
|
struct WalkStateHeading {
|
|
|
|
Heading startHeading;
|
|
|
|
/** ctor */
|
|
WalkStateHeading(const Heading& curHeading) : startHeading(curHeading) {;}
|
|
|
|
};
|
|
|
|
|
|
#endif // WALKSTATEHEADING_H
|