| 33 | mitk::ArbitraryTimeGeometry::~ArbitraryTimeGeometry() = default; |
| 34 | |
| 35 | void mitk::ArbitraryTimeGeometry::Initialize() |
| 36 | { |
| 37 | this->ClearAllGeometries(); |
| 38 | Geometry3D::Pointer geo = Geometry3D::New(); |
| 39 | geo->Initialize(); |
| 40 | |
| 41 | this->AppendNewTimeStep(geo, 0, 1); |
| 42 | |
| 43 | Update(); |
| 44 | } |
| 45 | |
| 46 | mitk::TimeStepType mitk::ArbitraryTimeGeometry::CountTimeSteps() const |
| 47 | { |
nothing calls this directly
no test coverage detected