| 360 | } |
| 361 | |
| 362 | mitk::ContourModel::VertexIterator mitk::ContourModel::IteratorEnd(TimeStepType timestep) const |
| 363 | { |
| 364 | if (!this->IsEmptyTimeStep(timestep)) |
| 365 | { |
| 366 | return this->m_ContourSeries[timestep]->IteratorEnd(); |
| 367 | } |
| 368 | else |
| 369 | { |
| 370 | mitkThrow() << "No iterator at invalid timestep " << timestep << ". There are only " << this->GetTimeSteps() |
| 371 | << " timesteps available."; |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | bool mitk::ContourModel::IsClosed(int timestep) const |
| 376 | { |