| 197 | } |
| 198 | |
| 199 | const mitk::ContourModel::VertexType *mitk::ContourModel::GetVertexAt(int index, TimeStepType timestep) const |
| 200 | { |
| 201 | if (!this->IsEmptyTimeStep(timestep) && this->m_ContourSeries[timestep]->GetSize() > mitk::ContourElement::VertexSizeType(index)) |
| 202 | { |
| 203 | return this->m_ContourSeries[timestep]->GetVertexAt(index); |
| 204 | } |
| 205 | return nullptr; |
| 206 | } |
| 207 | |
| 208 | const mitk::ContourModel::VertexType *mitk::ContourModel::GetVertexAt(mitk::Point3D &point, |
| 209 | float eps, |