| 567 | } |
| 568 | |
| 569 | void mitk::PointSet::ClearSelection() |
| 570 | { |
| 571 | for (auto pointSet : m_PointSetSeries) |
| 572 | { |
| 573 | const auto end = pointSet->GetPointData()->End(); |
| 574 | for (auto it = pointSet->GetPointData()->Begin(); it != end; ++it) |
| 575 | { |
| 576 | it.Value().selected = false; |
| 577 | } |
| 578 | } |
| 579 | } |
| 580 | |
| 581 | void mitk::PointSet::ExecuteOperation(Operation *operation) |
| 582 | { |