| 218 | } |
| 219 | |
| 220 | RoutingOptions SingleVehicleWorldGraph::GetRoutingOptions(Segment const & segment) |
| 221 | { |
| 222 | ASSERT(segment.IsRealSegment(), ()); |
| 223 | |
| 224 | auto const & geometry = GetRoadGeometry(segment.GetMwmId(), segment.GetFeatureId()); |
| 225 | return geometry.GetRoutingOptions(); |
| 226 | } |
| 227 | |
| 228 | void SingleVehicleWorldGraph::SetAStarParents(bool forward, Parents<Segment> & parents) |
| 229 | { |
nothing calls this directly
no test coverage detected