| 446 | } |
| 447 | |
| 448 | BoxArray |
| 449 | ClusterList::boxArray () const |
| 450 | { |
| 451 | BoxArray ba(lst.size()); |
| 452 | |
| 453 | int i = 0; |
| 454 | for (auto const& cli : lst) { |
| 455 | ba.set(i++, cli->box()); |
| 456 | } |
| 457 | |
| 458 | return ba; |
| 459 | } |
| 460 | |
| 461 | void |
| 462 | ClusterList::boxArray (BoxArray& ba) const |