| 586 | } |
| 587 | |
| 588 | mitk::ContourModel::VertexListType mitk::ContourModel::GetControlVertices(TimeStepType timestep) |
| 589 | { |
| 590 | VertexListType controlVertices; |
| 591 | if (!this->IsEmptyTimeStep(timestep)) |
| 592 | { |
| 593 | controlVertices = this->m_ContourSeries[timestep]->GetControlVertices(); |
| 594 | } |
| 595 | return controlVertices; |
| 596 | } |
| 597 | |
| 598 | mitk::ContourModel::VertexListType mitk::ContourModel::GetVertexList(TimeStepType timestep) |
| 599 | { |
no test coverage detected