| 351 | } |
| 352 | |
| 353 | void COPCindex::intersect_rectangle(const F64 r_min_x, const F64 r_min_y, const F64 r_max_x, const F64 r_max_y) |
| 354 | { |
| 355 | this->r_min_x = r_min_x; |
| 356 | this->r_min_y = r_min_y; |
| 357 | this->r_max_x = r_max_x; |
| 358 | this->r_max_y = r_max_y; |
| 359 | query_intervals(); |
| 360 | } |
| 361 | |
| 362 | void COPCindex::intersect_cuboid(const F64 r_min_x, const F64 r_min_y, const F64 r_min_z, const F64 r_max_x, const F64 r_max_y, const F64 r_max_z) |
| 363 | { |
no outgoing calls
no test coverage detected