geometry changes/fixes/new features

new grid walkers + fixes
new test-cases
worked on step/and turn detection
android offline-data-reader
worked on vap-grouping
This commit is contained in:
2016-09-07 10:16:51 +02:00
parent a203305628
commit d283d9b326
27 changed files with 976 additions and 333 deletions

View File

@@ -6,11 +6,11 @@
/** base-class for all WalkStates */
struct WalkState {
/** position where the walk starts */
GridPoint startPos;
/** current position within the grid (-> in cm!) */
GridPoint position;
/** ctor */
WalkState(const GridPoint& startPos) : startPos(startPos) {;}
explicit WalkState(const GridPoint& position) : position(position) {;}
};