| 18 | using m2::RectD; |
| 19 | |
| 20 | PointD GetPolyLineCenter(vector<PointD> const & points) |
| 21 | { |
| 22 | return m2::ApplyCalculator(points, m2::CalculatePolyLineCenter()); |
| 23 | } |
| 24 | |
| 25 | RectD GetBoundingBox(vector<PointD> const & points) |
| 26 | { |
no test coverage detected