| 170 | } |
| 171 | |
| 172 | void mitk::TimeGeometry::PrintSelf(std::ostream &os, itk::Indent indent) const |
| 173 | { |
| 174 | // Superclass::PrintSelf(os,indent); |
| 175 | os << indent << " TimeSteps: " << this->CountTimeSteps() << std::endl; |
| 176 | |
| 177 | os << std::endl; |
| 178 | os << indent << " GetGeometryForTimeStep(0): "; |
| 179 | if (GetGeometryForTimeStep(0).IsNull()) |
| 180 | os << "nullptr" << std::endl; |
| 181 | else |
| 182 | GetGeometryForTimeStep(0)->Print(os, indent); |
| 183 | } |
| 184 | |
| 185 | bool mitk::Equal(const TimeGeometry& leftHandSide, const TimeGeometry& rightHandSide, ScalarType eps, bool verbose) |
| 186 | { |
nothing calls this directly
no test coverage detected