| 361 | } |
| 362 | |
| 363 | BOOL LASreader::read_point_inside_rectangle_indexed() { |
| 364 | while (index->seek_next((LASreader*)this)) { |
| 365 | if (read_point_default() && point.inside_rectangle(r_min_x, r_min_y, r_max_x, r_max_y)) return TRUE; |
| 366 | } |
| 367 | return FALSE; |
| 368 | } |
| 369 | |
| 370 | BOOL LASreader::read_point_inside_rectangle_copc_indexed() { |
| 371 | while (copc_index->seek_next((LASreader*)this)) { |
nothing calls this directly
no test coverage detected