| 126 | } |
| 127 | |
| 128 | m2::RectD Int64ToRectObsolete(std::pair<int64_t, int64_t> const & p, uint8_t coordBits) |
| 129 | { |
| 130 | m2::PointD const pt1 = Int64ToPointObsolete(p.first, coordBits); |
| 131 | m2::PointD const pt2 = Int64ToPointObsolete(p.second, coordBits); |
| 132 | return m2::RectD(pt1, pt2); |
| 133 | } |
| 134 | |
| 135 | uint64_t PointUToUint64Obsolete(m2::PointU const & pt) |
| 136 | { |
no test coverage detected