All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
PathsHelpers.h
1 #pragma once
2 
3 #include "PointOnPath.h"
4 #include "Space.h"
5 
6 namespace Eegeo
7 {
8  namespace Geometry
9  {
10  namespace Paths
11  {
12  namespace PathsHelpers
13  {
14  PointOnPath GetPointOnPath(const Space::LatLong& point, const std::vector<Space::LatLong>& polylinePathPoints);
15  }
16  }
17  }
18 }