| 326 | } |
| 327 | |
| 328 | BOOL LASreader::read_point_inside_tile_indexed() { |
| 329 | while (index->seek_next((LASreader*)this)) { |
| 330 | if (read_point_default() && point.inside_tile(t_ll_x, t_ll_y, t_ur_x, t_ur_y)) return TRUE; |
| 331 | } |
| 332 | return FALSE; |
| 333 | } |
| 334 | |
| 335 | BOOL LASreader::read_point_inside_circle() { |
| 336 | while (read_point_default()) { |
nothing calls this directly
no test coverage detected