| 230 | } |
| 231 | |
| 232 | void EncodePolyline(InPointsT const & points, m2::PointU const & basePoint, m2::PointU const & maxPoint, |
| 233 | OutDeltasT & deltas) |
| 234 | { |
| 235 | EncodePolylinePrev2(points, basePoint, maxPoint, deltas); |
| 236 | } |
| 237 | |
| 238 | void DecodePolyline(InDeltasT const & deltas, m2::PointU const & basePoint, m2::PointU const & maxPoint, |
| 239 | OutPointsT & points) |
nothing calls this directly
no test coverage detected