| 372 | } |
| 373 | |
| 374 | std::vector<Segment> IndexRouter::GetBestOutgoingSegments(m2::PointD const & checkpoint, WorldGraph & graph) |
| 375 | { |
| 376 | bool dummy = false; |
| 377 | std::vector<Segment> segments; |
| 378 | |
| 379 | PointsOnEdgesSnapping snapping(*this, graph); |
| 380 | snapping.FindBestSegments(checkpoint, m2::PointD::Zero() /* startDirection */, true /* isOutgoing */, segments, |
| 381 | dummy); |
| 382 | |
| 383 | return segments; |
| 384 | } |
| 385 | |
| 386 | bool IndexRouter::GetBestOutgoingEdges(m2::PointD const & checkpoint, WorldGraph & graph, std::vector<Edge> & edges) |
| 387 | { |
nothing calls this directly
no test coverage detected