| 23 | } |
| 24 | |
| 25 | Iter FollowedPolyline::GetIterToIndex(size_t index) const |
| 26 | { |
| 27 | ASSERT(IsValid(), ()); |
| 28 | ASSERT_LESS(index, m_poly.GetSize(), ()); |
| 29 | |
| 30 | return Iter(m_poly.GetPoint(index), index); |
| 31 | } |
| 32 | |
| 33 | double FollowedPolyline::GetDistanceM(Iter const & it1, Iter const & it2) const |
| 34 | { |
no test coverage detected