| 342 | } |
| 343 | |
| 344 | mitk::ContourModel::VertexIterator mitk::ContourModel::IteratorBegin(TimeStepType timestep) const |
| 345 | { |
| 346 | if (!this->IsEmptyTimeStep(timestep)) |
| 347 | { |
| 348 | return this->m_ContourSeries[timestep]->IteratorBegin(); |
| 349 | } |
| 350 | else |
| 351 | { |
| 352 | mitkThrow() << "No iterator at invalid timestep " << timestep << ". There are only " << this->GetTimeSteps() |
| 353 | << " timesteps available."; |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | mitk::ContourModel::VertexIterator mitk::ContourModel::End(TimeStepType timestep) const |
| 358 | { |