| 384 | } |
| 385 | |
| 386 | bool IndexRouter::GetBestOutgoingEdges(m2::PointD const & checkpoint, WorldGraph & graph, std::vector<Edge> & edges) |
| 387 | { |
| 388 | bool dummy = false; |
| 389 | PointsOnEdgesSnapping snapping(*this, graph); |
| 390 | return snapping.FindBestEdges(checkpoint, m2::PointD::Zero() /* startDirection */, true /* isOutgoing */, |
| 391 | FeaturesRoadGraph::kClosestEdgesRadiusM, edges, dummy); |
| 392 | } |
| 393 | |
| 394 | void IndexRouter::AppendPartsOfReal(LatLonWithAltitude const & point1, LatLonWithAltitude const & point2, |
| 395 | uint32_t & startIdx, ConnectionToOsm & link) |
no test coverage detected