| 95 | } |
| 96 | |
| 97 | void operator()(RegionT const & r) |
| 98 | { |
| 99 | // if r is fully inside source rect region, |
| 100 | // put it to the result vector without any intersection |
| 101 | if (m_src.IsRectInside(r.GetRect())) |
| 102 | m_res.push_back(r); |
| 103 | else |
| 104 | m2::IntersectRegions(m_res.front(), r, m_res); |
| 105 | } |
| 106 | |
| 107 | size_t GetPointsCount() const |
| 108 | { |
nothing calls this directly
no test coverage detected