| 118 | } |
| 119 | |
| 120 | void DecodePolylinePrev1(InDeltasT const & deltas, m2::PointU const & basePoint, m2::PointU const & /*maxPoint*/, |
| 121 | OutPointsT & points) |
| 122 | { |
| 123 | size_t const count = deltas.size(); |
| 124 | if (count > 0) |
| 125 | { |
| 126 | points.push_back(DecodePointDeltaFromUint(deltas[0], basePoint)); |
| 127 | for (size_t i = 1; i < count; ++i) |
| 128 | points.push_back(DecodePointDeltaFromUint(deltas[i], points.back())); |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | void EncodePolylinePrev2(InPointsT const & points, m2::PointU const & basePoint, m2::PointU const & maxPoint, |
| 133 | OutDeltasT & deltas) |
nothing calls this directly
no test coverage detected