| 409 | } |
| 410 | |
| 411 | bool mitk::ContourModel::SetControlVertexAt(Point3D &point, float eps, TimeStepType timestep) |
| 412 | { |
| 413 | if (!this->IsEmptyTimeStep(timestep)) |
| 414 | { |
| 415 | VertexType *vertex = this->m_ContourSeries[timestep]->GetVertexAt(point, eps); |
| 416 | if (vertex != nullptr) |
| 417 | { |
| 418 | vertex->IsControlPoint = true; |
| 419 | return true; |
| 420 | } |
| 421 | } |
| 422 | return false; |
| 423 | } |
| 424 | |
| 425 | bool mitk::ContourModel::SetControlVertexAt(int index, TimeStepType timestep) |
| 426 | { |
no test coverage detected