| 131 | |
| 132 | |
| 133 | const mitk::PlotDataCurveCollection* mitk::ModelFitPlotData::GetPositionalPlot(const mitk::Point3D& point) const |
| 134 | { |
| 135 | auto predicate = [point](const PositionalCollectionMap::value_type& value) {return value.second.first == point; }; |
| 136 | |
| 137 | auto iter = std::find_if(std::begin(this->positionalPlots), std::end(this->positionalPlots), predicate); |
| 138 | if (iter != positionalPlots.end()) |
| 139 | { |
| 140 | return iter->second.second.GetPointer(); |
| 141 | } |
| 142 | return nullptr; |
| 143 | }; |
| 144 | |
| 145 | const mitk::PlotDataCurveCollection* mitk::ModelFitPlotData::GetPositionalPlot(mitk::PointSet::PointIdentifier id) const |
| 146 | { |
nothing calls this directly
no test coverage detected