| 306 | } |
| 307 | |
| 308 | COPCindex::COPCindex(const LASheader& header) : EPToctree(header) |
| 309 | { |
| 310 | start = 0; |
| 311 | end = 0; |
| 312 | current_interval = 0; |
| 313 | have_interval = false; |
| 314 | |
| 315 | r_min_x = F64_MIN; |
| 316 | r_min_y = F64_MIN; |
| 317 | r_min_z = F64_MIN; |
| 318 | r_max_x = F64_MAX; |
| 319 | r_max_y = F64_MAX; |
| 320 | r_max_z = F64_MAX; |
| 321 | q_depth = max_depth; |
| 322 | |
| 323 | sort_octants = &spatial_order; |
| 324 | } |
| 325 | |
| 326 | void COPCindex::set_depth_limit(const I32 depth) |
| 327 | { |
nothing calls this directly
no outgoing calls
no test coverage detected