| 347 | } |
| 348 | |
| 349 | BOOL LASreader::read_point_inside_circle_copc_indexed() { |
| 350 | while (copc_index->seek_next((LASreader*)this)) { |
| 351 | if (read_point_default() && point.inside_circle(c_center_x, c_center_y, c_radius_squared)) return TRUE; |
| 352 | } |
| 353 | return FALSE; |
| 354 | } |
| 355 | |
| 356 | BOOL LASreader::read_point_inside_rectangle() { |
| 357 | while (read_point_default()) { |
nothing calls this directly
no test coverage detected