| 354 | } |
| 355 | |
| 356 | BOOL LASreader::read_point_inside_rectangle() { |
| 357 | while (read_point_default()) { |
| 358 | if (point.inside_rectangle(r_min_x, r_min_y, r_max_x, r_max_y)) return TRUE; |
| 359 | } |
| 360 | return FALSE; |
| 361 | } |
| 362 | |
| 363 | BOOL LASreader::read_point_inside_rectangle_indexed() { |
| 364 | while (index->seek_next((LASreader*)this)) { |
nothing calls this directly
no test coverage detected