| 639 | } |
| 640 | |
| 641 | void mitk::ContourModel::InitializeEmpty() |
| 642 | { |
| 643 | // clear data at timesteps |
| 644 | this->m_ContourSeries.resize(0); |
| 645 | this->m_ContourSeries.push_back(ContourElement::New()); |
| 646 | |
| 647 | // set number of timesteps to one |
| 648 | this->InitializeTimeGeometry(1); |
| 649 | |
| 650 | m_SelectedVertex = nullptr; |
| 651 | this->m_lineInterpolation = ContourModel::LINEAR; |
| 652 | } |
| 653 | |
| 654 | void mitk::ContourModel::UpdateOutputInformation() |
| 655 | { |
no test coverage detected