| 45 | ++m_passedIdx; |
| 46 | } |
| 47 | double Checkpoints::GetSummaryLengthBetweenPointsMeters() const |
| 48 | { |
| 49 | double dist = 0.0; |
| 50 | for (size_t i = 1; i < m_points.size(); ++i) |
| 51 | dist += mercator::DistanceOnEarth(m_points[i - 1], m_points[i]); |
| 52 | |
| 53 | return dist; |
| 54 | } |
| 55 | |
| 56 | std::string DebugPrint(Checkpoints const & checkpoints) |
| 57 | { |
no test coverage detected