| 319 | } |
| 320 | |
| 321 | BOOL LASreader::read_point_inside_tile() { |
| 322 | while (read_point_default()) { |
| 323 | if (point.inside_tile(t_ll_x, t_ll_y, t_ur_x, t_ur_y)) return TRUE; |
| 324 | } |
| 325 | return FALSE; |
| 326 | } |
| 327 | |
| 328 | BOOL LASreader::read_point_inside_tile_indexed() { |
| 329 | while (index->seek_next((LASreader*)this)) { |
nothing calls this directly
no test coverage detected