| 287 | } |
| 288 | |
| 289 | bool mitk::ContourModel::IsNearContour(Point3D &point, float eps, TimeStepType timestep) const |
| 290 | { |
| 291 | if (!this->IsEmptyTimeStep(timestep)) |
| 292 | { |
| 293 | return this->m_ContourSeries[timestep]->IsNearContour(point, eps); |
| 294 | } |
| 295 | return false; |
| 296 | } |
| 297 | |
| 298 | bool mitk::ContourModel::GetLineSegmentForPoint(const mitk::Point3D& point, |
| 299 | float eps, TimeStepType timestep, |
no test coverage detected