| 222 | } |
| 223 | |
| 224 | BOOL LASindex::intersect_tile(const F32 ll_x, const F32 ll_y, const F32 size) |
| 225 | { |
| 226 | have_interval = FALSE; |
| 227 | cells = spatial->intersect_tile(ll_x, ll_y, size); |
| 228 | // LASMessage(LAS_VERBOSE, "%d cells of %g/%g %g/%g intersect tile %g/%g/%g", num_cells, spatial->get_min_x(), spatial->get_min_y(), spatial->get_max_x(), spatial->get_max_y(), ll_x, ll_y, size); |
| 229 | if (cells) |
| 230 | return merge_intervals(); |
| 231 | return FALSE; |
| 232 | } |
| 233 | |
| 234 | BOOL LASindex::intersect_circle(const F64 center_x, const F64 center_y, const F64 radius) |
| 235 | { |