| 482 | } |
| 483 | |
| 484 | void mitk::ContourModel::ShiftSelectedVertex(Vector3D &translate) |
| 485 | { |
| 486 | if (this->m_SelectedVertex) |
| 487 | { |
| 488 | this->ShiftVertex(this->m_SelectedVertex, translate); |
| 489 | this->Modified(); |
| 490 | this->m_UpdateBoundingBox = true; |
| 491 | } |
| 492 | } |
| 493 | |
| 494 | void mitk::ContourModel::ShiftContour(Vector3D &translate, TimeStepType timestep) |
| 495 | { |