| 368 | } |
| 369 | |
| 370 | BOOL LASreader::read_point_inside_rectangle_copc_indexed() { |
| 371 | while (copc_index->seek_next((LASreader*)this)) { |
| 372 | if (read_point_default() && point.inside_rectangle(r_min_x, r_min_y, r_max_x, r_max_y)) { |
| 373 | return TRUE; |
| 374 | } |
| 375 | } |
| 376 | return FALSE; |
| 377 | } |
| 378 | |
| 379 | BOOL LASreader::read_point_inside_depth_copc_indexed() { |
| 380 | while (copc_index->seek_next((LASreader*)this)) { |
nothing calls this directly
no test coverage detected