| 515 | } |
| 516 | |
| 517 | void mitk::ContourModel::Clear(TimeStepType timestep) |
| 518 | { |
| 519 | if (!this->IsEmptyTimeStep(timestep)) |
| 520 | { |
| 521 | // clear data at timestep |
| 522 | this->m_ContourSeries[timestep]->Clear(); |
| 523 | this->Modified(); |
| 524 | this->m_UpdateBoundingBox = true; |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | void mitk::ContourModel::Expand(unsigned int timeSteps) |
| 529 | { |
no test coverage detected