| 122 | } |
| 123 | |
| 124 | bool EdgesAreAlmostEqual(Graph::Edge const & e1, Graph::Edge const & e2) |
| 125 | { |
| 126 | // TODO(mgsergio): Do I need to check fields other than points? |
| 127 | return PointsAreClose(e1.GetStartPoint(), e2.GetStartPoint()) && PointsAreClose(e1.GetEndPoint(), e2.GetEndPoint()); |
| 128 | } |
| 129 | |
| 130 | string LogAs2GisPath(Graph::EdgeVector const & path) |
| 131 | { |
no test coverage detected