| 31 | } |
| 32 | |
| 33 | int CalcDiffRoadClasses(HighwayClass const left, HighwayClass const right) |
| 34 | { |
| 35 | return static_cast<int>(left) - static_cast<int>(right); |
| 36 | } |
| 37 | |
| 38 | template <class T> |
| 39 | T FindDirectionByAngle(std::vector<std::pair<double, T>> const & lowerBounds, double const angle) |
no outgoing calls
no test coverage detected