| 37 | } |
| 38 | |
| 39 | void mitk::PlaneGeometryData::SetPlaneGeometry(mitk::PlaneGeometry *geometry2d) |
| 40 | { |
| 41 | if (geometry2d != nullptr) |
| 42 | { |
| 43 | ProportionalTimeGeometry::Pointer timeGeometry = ProportionalTimeGeometry::New(); |
| 44 | timeGeometry->Initialize(geometry2d, 1); |
| 45 | SetTimeGeometry(timeGeometry); |
| 46 | Modified(); |
| 47 | } |
| 48 | else |
| 49 | Superclass::SetGeometry(geometry2d); |
| 50 | } |
| 51 | |
| 52 | void mitk::PlaneGeometryData::UpdateOutputInformation() |
| 53 | { |
nothing calls this directly
no test coverage detected