| 117 | } |
| 118 | |
| 119 | bool mitk::ArbitraryTimeGeometry::IsValidTimePoint(TimePointType timePoint) const |
| 120 | { |
| 121 | return this->GetMinimumTimePoint() <= timePoint && |
| 122 | (timePoint < this->GetMaximumTimePoint() || (this->HasCollapsedFinalTimeStep() && timePoint <= this->GetMaximumTimePoint())); |
| 123 | } |
| 124 | |
| 125 | bool mitk::ArbitraryTimeGeometry::IsValidTimeStep(TimeStepType timeStep) const |
| 126 | { |
no test coverage detected