| 391 | } |
| 392 | |
| 393 | bool mitk::ContourModel::SelectVertexAt(const Point3D &point, float eps, TimeStepType timestep) |
| 394 | { |
| 395 | if (!this->IsEmptyTimeStep(timestep)) |
| 396 | { |
| 397 | this->m_SelectedVertex = this->m_ContourSeries[timestep]->GetVertexAt(point, eps); |
| 398 | } |
| 399 | return this->m_SelectedVertex != nullptr; |
| 400 | } |
| 401 | |
| 402 | bool mitk::ContourModel::SelectVertexAt(int index, TimeStepType timestep) |
| 403 | { |