| 28 | } |
| 29 | |
| 30 | PointT D2I(m2::PointD const & p) |
| 31 | { |
| 32 | m2::PointU const pu = PointDToPointU(p, kPointCoordBits); |
| 33 | return PointT(static_cast<int32_t>(pu.x), static_cast<int32_t>(pu.y)); |
| 34 | } |
| 35 | |
| 36 | m2::RegionI CreateRegionI(std::vector<m2::PointD> const & poly) |
| 37 | { |
no test coverage detected