LinearSegment -----------------------------------------------------------------------------------
| 10 | { |
| 11 | // LinearSegment ----------------------------------------------------------------------------------- |
| 12 | vector<m2::PointD> LinearSegment::GetMercatorPoints() const |
| 13 | { |
| 14 | vector<m2::PointD> points; |
| 15 | points.reserve(m_locationReference.m_points.size()); |
| 16 | for (auto const & point : m_locationReference.m_points) |
| 17 | points.push_back(mercator::FromLatLon(point.m_latLon)); |
| 18 | return points; |
| 19 | } |
| 20 | |
| 21 | vector<LocationReferencePoint> const & LinearSegment::GetLRPs() const |
| 22 | { |
no test coverage detected