| 596 | } |
| 597 | |
| 598 | mitk::ContourModel::VertexListType mitk::ContourModel::GetVertexList(TimeStepType timestep) |
| 599 | { |
| 600 | VertexListType controlVertices; |
| 601 | if (!this->IsEmptyTimeStep(timestep)) |
| 602 | { |
| 603 | controlVertices = *this->m_ContourSeries[timestep]->GetVertexList(); |
| 604 | } |
| 605 | return controlVertices; |
| 606 | } |
| 607 | |
| 608 | void mitk::ContourModel::ClearData() |
| 609 | { |
no test coverage detected