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
Indoor/grid/walk/GridWalkHelper.h
kazu 9947dced15 added several grid-walks
added new helper methods/classes (e.g. for heading)
new test cases
optimize the dijkstra
cleanups/refactoring
added timed-benchmarks to the log
many more...
2016-01-24 18:59:06 +01:00

18 lines
352 B
C++

#ifndef GRIDWALKHELPER_H
#define GRIDWALKHELPER_H
#include "../../geo/Heading.h"
class GridWalkHelper {
public:
/** get the heading-change between the two given locations */
template <typename T> static Heading getHeading(const T& from, const T& to) {
return Heading(from.x_cm, from.y_cm, to.x_cm, to.y_cm);
}
};
#endif // GRIDWALKHELPER_H