| 41 | } |
| 42 | |
| 43 | std::tuple<double, double, double> GetSpacing(const mitk::TimeGeometry* tg, mitk::TimeStepType t) |
| 44 | { |
| 45 | auto geom = GetConstGeometryForTimeStep(tg, t); |
| 46 | const auto s = geom->GetSpacing(); |
| 47 | return {s[0], s[1], s[2]}; |
| 48 | } |
| 49 | |
| 50 | void SetSpacing(mitk::TimeGeometry* tg, const std::array<double, 3>& spacing, mitk::TimeStepType t) |
| 51 | { |
no test coverage detected