| 188 | } |
| 189 | |
| 190 | int mitk::ContourModel::GetNumberOfVertices(TimeStepType timestep) const |
| 191 | { |
| 192 | if (!this->IsEmptyTimeStep(timestep)) |
| 193 | { |
| 194 | return this->m_ContourSeries[timestep]->GetSize(); |
| 195 | } |
| 196 | return -1; |
| 197 | } |
| 198 | |
| 199 | const mitk::ContourModel::VertexType *mitk::ContourModel::GetVertexAt(int index, TimeStepType timestep) const |
| 200 | { |