------------------------------------------------------------------------------
| 554 | |
| 555 | //------------------------------------------------------------------------------ |
| 556 | void vtkSelection::Union(vtkSelection* s) |
| 557 | { |
| 558 | for (const auto& nodePair : s->Internals->Items) |
| 559 | { |
| 560 | this->Union(nodePair.second); |
| 561 | } |
| 562 | } |
| 563 | |
| 564 | //------------------------------------------------------------------------------ |
| 565 | void vtkSelection::Union(vtkSelectionNode* node) |